#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
What is the size of structure in c?
How do you override a defined macro?
What is dynamic memory allocation?
c program for searching a student details among 10 student details
Explain how do you list a file’s date and time?
What are run-time errors?
What is merge sort in c?
What is pointers in c?
What is assignment operator?
What are the general description for loop statement and available loop types in c?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
How many types of operator or there in c?
Write a code to generate divisors of an integer?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are formal parameters?