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

Answer Posted / ram

233

Is This Answer Correct ?    7 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between a for loop and a while loop? What are it uses?

650


How arrays can be passed to a user defined function

561


What is the mean of function?

635


When can you use a pointer with a function?

551


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

673






Explain the use of function toupper() with and example code?

633


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

713


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

1752


How to write a code for reverse of string without using string functions?

1568


What is sizeof int in c?

586


4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.

1707


c program for searching a student details among 10 student details

1638


Explain main function in c?

612


Explain what is the difference between functions getch() and getche()?

589


Are the outer parentheses in return statements really optional?

560