main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Post New Answer View All Answers
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
what is event driven software and what is procedural driven software?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Can a file other than a .h file be included with #include?
The file stdio.h, what does it contain?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is #line in c?
How are portions of a program disabled in demo versions?
What is wrong with this program statement?
How are structure passing and returning implemented?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Can we assign integer value to char in c?
Why enum is used in c?
What is restrict keyword in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none