void main()
{
int i=5;
printf("%d",i++ + ++i);
}

Answer Posted / vignesh1988i

the answer is 12..... 5 + 7

Is This Answer Correct ?    12 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can type-insensitive macros be created?

705


What are linker error?

618


Why isnt any of this standardized in c?

641


Why is it usually a bad idea to use gets()? Suggest a workaround.

911


What do you mean by keywords in c?

632






What is floating point constants?

695


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

709


What is meant by type specifiers?

663


Difference between linking and loading?

698


Write a program to print "hello world" without using a semicolon?

600


Why is c not oop?

541


What is hashing in c language?

619


What are 3 types of structures?

596


Why do we use return in c?

572


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.

1599