int n=1;
while(1)
{
switch(n)
{
case 1:printf("a");
n++;
continue;
case 2:printf("b");
n++;
continue;
default : printf("c");
break;
}
break;
}
Explain how are 16- and 32-bit numbers stored?
What is the use of typedef in c?
inline function is there in c language?
Why do we use header files in c?
What is the g value paradox?
what is the difference between static variable and register variable?
write a program to display reverse of a number using for loop?
What does %p mean c?
Find if a number is power of two or not?
How do you sort filenames in a directory?
Explain how do you determine a file’s attributes?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1