2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / e.manjuladevi
x=2
| Is This Answer Correct ? | 13 Yes | 9 No |
Post New Answer View All Answers
What is array of structure in c programming?
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.
Can you mix old-style and new-style function syntax?
What is #pragma statements?
Why do we use static in c?
What is the general form of #line preprocessor?
Do you know the use of 'auto' keyword?
Explain what happens if you free a pointer twice?
What is an operator?
Explain how do you generate random numbers in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What do header files do?
Why calloc is better than malloc?
How many types of operators are there in c?
What is actual argument?