What is scope rule in c?
No Answer is Posted For this Question
Be the First to Post Answer
Define the scope of static variables.
wat is the meaning of c?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
Explain how can you restore a redirected standard stream?
What is the meaning of && in c?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
12345 1234 123 12 1
What is c language used for?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
How can I trap or ignore keyboard interrupts like control-c?
What is wrong in this statement?