Is it possible to initialize a variable at the time it was declared?
What are the disadvantages of external storage class?
Are the variables argc and argv are local to main?
what value is returned to operating system after program execution?
Explain what does the format %10.2 mean when included in a printf statement?
explain what are actual arguments?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Why c language is called c?
Explain is it valid to address one element beyond the end of an array?
Explain what is wrong with this program statement?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
i have a written test for microland please give me test pattern
Can you write the function prototype, definition and mention the other requirements.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above