Thursday, December 4, 2008

what is typeof??

#include

int main()
{
int a=12;
typeof (a) b; //same as int b
b=123;
printf("b is %d \n a is %d \n",b,a);
return 0;
}

No comments: