#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / tamil selvam
i value is 2.
j value is 7.
| Is This Answer Correct ? | 19 Yes | 9 No |
Post New Answer View All Answers
What is c standard library?
What is substring in c?
What is the use of bitwise operator?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is the difference between arrays and pointers?
If errno contains a nonzero number, is there an error?
What is s or c?
What are the advantage of c language?
What are runtime error?
Tell me with an example the self-referential structure?
Explain what is the difference between far and near ?
List some of the static data structures in C?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
How can I call fortran?