Define the scope of static variables.
No Answer is Posted For this Question
Be the First to Post Answer
what do the 'c' and 'v' in argc and argv stand for?
Can you please explain the scope of static variables?
multiple of 9 without useing +,* oprator
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
write a proram to reverse the string using switch case?
difference between Low, Middle, High Level languages in c ?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Where we use clrscr in c?
Why do we use header files in c?