代码搜索:limits

找到约 7,357 项符合「limits」的源代码

代码结果 7,357
www.eeworm.com/read/389093/8548821

h limits.h

www.eeworm.com/read/388617/8594924

cpp limits.cpp

// limits.cpp -- some integer limits #include #include // use limits.h for older systems int main() { using namespace std; int n_int = INT_MAX; /
www.eeworm.com/read/388617/8596055

cpp limits.cpp

// limits.cpp -- some integer limits #include #include // use limits.h for older systems int main() { using namespace std; int n_int = INT_MAX; /
www.eeworm.com/read/387835/8651585

h limits.h

www.eeworm.com/read/431379/8685468

h limits.h

/**************************************************************** Define numerical limits for integral types. The actual constants and their types ultimately depend on compiler options. ******
www.eeworm.com/read/431223/8699137

c limits.c

/* Check AC/DC limits. */ #include //#ifndef WINDOWS //#include //#else #include "pfwstdio.h" //#endif #include #include #include "constant.h" #include "param
www.eeworm.com/read/386806/8725414

h limits.h

#ifndef _LINUX_LIMITS_H #define _LINUX_LIMITS_H #define NR_OPEN 256 #define NGROUPS_MAX 32 /* supplemental group IDs are available */ #define ARG_MAX 131072 /* # bytes of args +
www.eeworm.com/read/386780/8727530

h limits.h

#ifndef __LIMIT_H #define __LIMIT_H #define CHAR_BIT 8 #define CHAR_MAX UCHAR_MAX #define CHAR_MIN UCHAR_MIN #define INT_MAX 32767 #define INT_MIN -32768 #define SCHAR_MAX 127 #define SCHAR_
www.eeworm.com/read/430434/8747627

h limits.h

/*-------------------------------------------------------------------------- LIMITS.H ANSI standard include file. Copyright (c) 1988-2000 Keil Elektronik GmbH and Keil Software, Inc. All rights
www.eeworm.com/read/187283/8835215

h limits.h

/* Number of bits in a `char'. */ #define CHAR_BIT 8 /* No multibyte characters supported yet. */ #define MB_LEN_MAX 1 /* Minimum and maximum values a `signed char' can hold. */ #define SCHAR_MIN