what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / girish
1,1,3
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Why we write conio h in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
How can you restore a redirected standard stream?
What is integer constants?
What does *p++ do?
What is ponter?
Why is sizeof () an operator and not a function?
What is the maximum length of an identifier?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
how many errors in c explain deply
What are c header files?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What are actual arguments?
int far *near * p; means