main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / san
13,11,11
| Is This Answer Correct ? | 106 Yes | 63 No |
Post New Answer View All Answers
What is the difference between formatted&unformatted i/o functions?
Define the scope of static variables.
What are the difference between a free-standing and a hosted environment?
Disadvantages of C language.
Explain what is the difference between a string and an array?
in iso what are the common technological language?
Can you please explain the difference between exit() and _exit() function?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is the difference between int main and void main?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
explain what are actual arguments?
What is a wrapper function in c?
What is the purpose of the preprocessor directive error?
Is there any data type in c with variable size?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference