Where are local variables stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why c++ is called c++ and not c+?
Give me the code of in-order recursive and non-recursive.
Why is void main used?
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Explain what are the __date__ and __time__ preprocessor commands?
What is the use of a static variable in c?
What are the valid places to have keyword “break”?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
How do I round numbers?
What do you mean by dynamic memory allocation in c?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping