What is the auto keyword good for?
No Answer is Posted For this Question
Be the First to Post Answer
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Write a program to print fibonacci series without using recursion?
What are called c variables?
Dont ansi function prototypes render lint obsolete?
Explain can static variables be declared in a header file?
What are the types of macro formats?
Total of how many functions are available in c?
Write a program for finding factorial of a number.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What are the advantages and disadvantages of c language?
What is a macro?