main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}

Answer Posted / san

13,11,11

Is This Answer Correct ?    106 Yes 62 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is pre-emptive data structure and explain it with example?

3213


Explain how can a program be made to print the name of a source file where an error occurs?

692


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

586


What is the importance of c in your views?

598


Tell me what are bitwise shift operators?

659






What is the use of a semicolon (;) at the end of every program statement?

776


hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell

1674


c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above

737


Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.

1597


What do you mean by a local block?

632


How #define works?

620


What does s c mean on snapchat?

589


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

658


Can you please explain the scope of static variables?

605


how can I convert a string to a number?

598