what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / richa
3,2,2
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you redirect a standard stream?
What is a string?
What does char * * argv mean in c?
Explain what are the standard predefined macros?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Differentiate between the = symbol and == symbol?
What is the hardest programming language?
What is hungarian notation? Is it worthwhile?
What are the types of functions in c?
What are actual arguments?
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.
Is c call by value?
How to define structures? ·
What does emoji p mean?
Why can't I perform arithmetic on a void* pointer?