Differentiate between the expression “++a” and “a++”?
No Answer is Posted For this Question
Be the First to Post Answer
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What is indirection?
How variables are declared in c?
can v write main() { main(); } Is it true?
why java is called as a purely oops language.
What's wrong with "char *p = malloc(10);" ?
HOW CAN ADD OUR FUNCTION IN LIBRARY.
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
what are the advantages of a macro over a function?
Explain two-dimensional array.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is the purpose of main( ) in c language?