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
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is the difference between strcpy() and memcpy() function in c programming?
Write a program to reverse a string.
Why we use int main and void main?
What is the best way to comment out a section of code that contains comments?
shorting algorithmS
Tell me about low level programming languages.
What is openmp in c?
What is c language and why we use it?
What are the header files used in c language?
What is the difference between variable declaration and variable definition in c?
What is advantage of pointer in c?
What are the types of c language?
Write a program to print ASCII code for a given digit.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above