Where local variables are stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of function overloading in C?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
How would you write qsort?
what is c language?
Tell us bitwise shift operators?
What are the different types of control structures?
What is the meaning of 2d in c?
why integer range between -327680to+32767
How can I do peek and poke in c?
c pgm count no of lines , blanks, tabs in a para(File concept)
Explain what is a 'locale'?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.