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
number of times a digit is present in a number
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What are different storage class specifiers in c?
Can you please explain the scope of static variables?
Write a program to print fibonacci series using recursion?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How can you increase the size of a dynamically allocated array?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain what are binary trees?
why return type of main is not necessary in linux
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
how could explain about job profile
How do you initialize pointer variables?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402