Explain what are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
What is Memory leakage ?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Can we replace the struct function in tree syntax with a union?
what will be the output for the following main() { printf("hi" "hello"); }
What language is c written?
what is c programing
what is default constructor?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
Explain c preprocessor?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What is Heap?
What are the different types of data structures in c?