what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}

Answer Posted / girish

1,1,3

Is This Answer Correct ?    3 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is structure data type in c?

564


In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.

1374


Why dont c comments nest?

615


What is pointer to pointer in c?

632


If fflush wont work, what can I use to flush input?

608






What is const and volatile in c?

561


What is scope rule of function in c?

545


Why do we need functions in c?

551


I have seen function declarations that look like this

597


What do you mean by c what are the main characteristics of c language?

564


What is the difference between formatted&unformatted i/o functions?

610


What is the difference between far and near in c?

599


In C, What is the #line used for?

1045


writ a program to compare using strcmp VIVA and viva with its output.

1519


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

654