what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sandeep
1,1,2
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
What is the difference between typedef and #define?
Is there a way to switch on strings?
Can we change the value of static variable in c?
Explain what is the difference between functions getch() and getche()?
What is logical error?
What does #pragma once mean?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What functions are in conio h?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Write the control statements in C language
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Is there a way to compare two structure variables?
Why do we use pointer to pointer in c?