#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
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
Is c procedural or object oriented?
What is a pointer in c plus plus?
Why is sprintf unsafe?
How do you search data in a data file using random access method?
Differentiate between the = symbol and == symbol?
What is huge pointer in c?
Are the outer parentheses in return statements really optional?
What are terms in math?
Explain spaghetti programming?
what is the format specifier for printing a pointer value?
Explain what is the general form of a c program?
Write a program to print fibonacci series without using recursion?
Why double pointer is used in c?
Differentiate call by value and call by reference?