#include<stdio.h>
main()
{
int a=1;
int b=0;
b=++a + ++a;
printf("%d %d",a,b);
}
Answer Posted / m.karthiga
3 6
| Is This Answer Correct ? | 19 Yes | 15 No |
Post New Answer View All Answers
Where static variables are stored in c?
Is c high or low level?
What is C language ?
Can you please explain the scope of static variables?
Explain the difference between malloc() and calloc() function?
What is the difference between ‘g’ and “g” in C?
What are dangling pointers in c?
Differentiate between a for loop and a while loop? What are it uses?
What is data structure in c programming?
Why do we need arrays in c?
Why c is called top down?
What are pointers? Why are they used?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the size of array float a(10)?