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

Answer Posted / 123ghouse@gmail.com

3,2,2;

Is This Answer Correct ?    21 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the two types of structure?

581


What is the purpose of ftell?

602


why we wont use '&' sing in aceesing the string using scanf

1787


What are pointers? What are different types of pointers?

634


Why can’t constant values be used to define an array’s initial size?

840






What is the use of getchar functions?

681


Explain the difference between malloc() and calloc() in c?

581


What is sizeof array?

618


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

654


What does. int *x[](); means ?

640


to find the closest pair

1827


Can you please explain the difference between malloc() and calloc() function?

623


How can I sort more data than will fit in memory?

632


When should the const modifier be used?

661


Write a program to know whether the input number is an armstrong number.

675