发布网友
共1个回答
热心网友
//---------- CalInt.c-------------
//---------------------------------
//---calculate the bytes of int---
//----------------------------------
#include <stdio.h>
int main(){
printf("The bytes of int is %ld\n", sizeof(int));
}
//同时可能不同编译器的结果是不同的。