What is pass by reference in functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the Purpose of 'extern' keyword in a function declaration?
Why doesn't the code "a[i] = i++;" work?
Why header file is used in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is "Hungarian Notation"?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
void main() { int i=5; printf("%d",i++ + ++i); }
name the language for writing c compiler?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above