what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / richa
3,2,2
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is memory leak in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is pointer to pointer in c with example?
Why shouldn’t I start variable names with underscores?
Explain why can’t constant values be used to define an array’s initial size?
What is a newline escape sequence?
Why we use stdio h in c?
#include
program to convert a integer to string in c language'
Where define directive used?
How can I read and write comma-delimited text?
What is calloc malloc realloc in c?
Write a program to generate random numbers in c?
What are derived data types in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)