what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sandeep
1,1,2
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
Explain how do you convert strings to numbers in c?
What is wrong with this program statement?
How do you declare a variable that will hold string values?
What is FIFO?
What are the two forms of #include directive?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
How important is structure in life?
What are compound statements?
What is a pragma?
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
Explain high-order and low-order bytes.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is a structure and why it is used?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)