#include<stdio.h>
main()
{
int a=1;
int b=0;
b=++a + ++a;
printf("%d %d",a,b);
}
Answer Posted / sas
2 5
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
Who is the main contributor in designing the c language after dennis ritchie?
Explain how do you list files in a directory?
How do we make a global variable accessible across files? Explain the extern keyword?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Sir i need notes for structure,functions,pointers in c language can you help me please
What are the different types of C instructions?
What is the purpose of ftell?
Why is it that not all header files are declared in every C program?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What are multibyte characters?
What do you mean by invalid pointer arithmetic?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What functions are in conio h?
How do you determine whether to use a stream function or a low-level function?
What is bss in c?