main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / pooja alagarsamy
when compiled as a program, it gives this output:
13 11 13
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Write a program to print “hello world” without using semicolon?
What is pointer to pointer in c language?
Write a program of prime number using recursion.
Why #include is used in c language?
The __________ attribute is used to announce variables based on definitions of columns in a table?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is d'n in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Is main a keyword in c?
to find the closest pair
What is the mean of function?
What are integer variable, floating-point variable and character variable?
Do you know the difference between malloc() and calloc() function?
Explain 'bit masking'?