2021年11月18日 星期四

sizeof test

 #include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main(int argc, char *argv[]) 

{

    printf("%d\n",sizeof(char));

    printf("%d\n",sizeof(int));

    printf("%d\n",sizeof(float));

    printf("%d\n",sizeof(double));

//    printf("%d",sizeof(single));

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...