Can you please explain the scope of static variables?
No Answer is Posted For this Question
Be the First to Post Answer
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What is your stream meaning?
What is New modifiers?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
What does & mean in scanf?
How to Throw some light on the splay trees?
Difference between malloc() and calloc() function?
What should malloc(0) do?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is the difference between fread and fwrite function?
Write a program to show the workingof auto variable.
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above