What are preprocessor directives in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What is getch?
Give differences between - new and malloc() , delete and free() ?
can i know the source code for reversing a linked list with out using a temporary variable?
Is exit(status) truly equivalent to returning the same status from main?
Juxtapose the use of override with new. What is shadowing?
Why is a semicolon (;) put at the end of every program statement?
If input is 123 then how to print 100 and 20 and 3 seperately?
wats SIZE_T meant for?
explain what is a newline escape sequence?
What are header files and what are its uses in C programming?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?