what are the advantages of a macro over a function?
No Answer is Posted For this Question
Be the First to Post Answer
How to avoid buffer overflow?
If you know then define #pragma?
What is the memory allocated by the following definition ? int (*x)[10];
Write a c program to demonstrate character and string constants?
write a program to arrange the contents of a 1D array in ascending order
Differentiate between #include<...> and #include '...'
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain the use of function toupper() with and example code?
what is the diff b/w static and non static variables in C. Give some examples plz.
What will happen when freeing memory twice
write a programming in c to find the sum of all elements in an array through function.
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol