Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

(limits.h) ใน C/C++


ไฟล์ส่วนหัว “limits.h” มีอยู่ในภาษา C ในขณะที่ เป็นภาษา C++ มีการกำหนดมาโครหลายตัวในไฟล์ส่วนหัวเหล่านี้ ขีดจำกัดระบุว่าตัวแปรไม่สามารถเก็บค่าเกินขีดจำกัดได้

แมโครบางตัวในไฟล์ส่วนหัว “limits.h” หรือ มีดังนี้

CHAR_BIT LONG_MIN LONG_MAX CHAR_MIN CHAR_MAX
INT_MIN INT_MAX SHRT_MIN SHRT_MAX ULONG_MAX

นี่คือตัวอย่าง ในภาษา C++

ตัวอย่าง

#include<iostream>
#include <bits/stdc++.h>
#include<climits>
using namespace std;
int main() {
   int x = 28;
   int a = CHAR_BIT*sizeof(x);
   stack<bool> s;
   cout << "The number is : " << x << endl;
   for (int i=1; i<=a; i++) {
      s.push(x%2);
      x = x/2;
   }
   cout << "The number of bits in a byte : " << CHAR_BIT << endl;
   for (int i=1; i<=a; i++) {
      cout << s.top();
      s.pop();
      if (i % CHAR_BIT == 0)
      cout << " ";
   }
   cout << "\n\nThe minimum value of short int :" << SHRT_MIN;
   return 0;
}

ผลลัพธ์

The number is : 28
The number of bits in a byte : 8
00000000 00000000 00000000 00011100

The minimum value of short int :-32768

ในโปรแกรมข้างต้น แสดงมาโคร สองตัว อันหนึ่งคือ CHAR_BIT และอีกอันคือ SHRT_MIN CHAR_BIT กำหนดจำนวนบิตใน char และ SHRT_MIN กำหนดค่าต่ำสุดสำหรับ short int

int x = 28;
int a = CHAR_BIT*sizeof(x);
….
cout << "\n\nThe minimum value of short int :" << SHRT_MIN;