Paste
Pasted as C by C Preprocessor ( 10 years ago )
#include<stdio.h>
#define type int
int main()
{
type b;
printf("%d\n",sizeof(b));
return 0;
}
Revise this Paste
#include<stdio.h>
#define type int
int main()
{
type b;
printf("%d\n",sizeof(b));
return 0;
}