#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
Write a code to remove duplicates in a string.
what is the syallabus of computer science students in group- 1?
#include
Where static variables are stored in memory in c?
Is it possible to pass an entire structure to functions?
What does the format %10.2 mean when included in a printf statement?
Explain what is page thrashing?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
How can I send mail from within a c program?
State two uses of pointers in C?
What are pointers really good for, anyway?
Are enumerations really portable?
what is use of malloc and calloc?
What is the benefit of using an enum rather than a #define constant?
What is the explanation for cyclic nature of data types in c?