What is const volatile variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is self-referential structure in c programming?
What is an expression?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
How to create struct variables?
program to find middle element of linklist?
What is %d used for?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Do string constants represent numerical values?
What is 02d in c?
Explain what are the __date__ and __time__ preprocessor commands?
Explain spaghetti programming?