#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / barathi
i=2
j=9
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Tell me what is the purpose of 'register' keyword in c language?
Explain do array subscripts always start with zero?
Write the Program to reverse a string using pointers.
What is 2 d array in c?
What are the characteristics of arrays in c?
What is a string?
Write a program for Overriding.
What is the difference between if else and switchstatement
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Explain what standard functions are available to manipulate strings?
When is a “switch” statement preferable over an “if” statement?
Tell me the use of bit field in c language?
What is the advantage of using #define to declare a constant?
Why c is called free form language?