Search Interview Questions
Question: What is the output of the following program?
#define SQR(x) (x*x)
main()
{
int a,b=3;
a= SQR(b+2);
printf("%d",a);
}
Answer: The ans is B(11).
Since it passes like (3+2) to #define, where it calculates as
(3+2 * 3+2), as Ist preference is multiply & then addition, it evalvates as
(3+ 2 * 3 +2) = (3+6+2)=11.
|
|||||||||||
Question: What is the output of the following program? #define SQR(x) (x*x) main() { int a,b=3; a= SQR(b+2); printf("%d",a); } Answer: The ans is B(11). If you have the better answer, then send it to us. We will display your answer after the approval Rules to Post Answers in CoolInterview.com:-
|
Related Questions | ||
What would be the output of the following program? main() { int i=4; switch(i) { default: printf("n A mouse is an elephant built by the Japanese"); case 1: printf(" Breeding rabbits is a hair raising experience"); break; case 2: printf("n Friction is a drag"); break; case 3: printf("n If practice make perfect, then nobody's perfect"); } } |
|
|
main() { signed int bit=512, mBit; { mBit = ~bit; bit = bit & ~bit ; printf("%d %d", bit, mBit); } } |
|
|
main() { if (!(1&&0)) { printf("OK I am done."); } else { printf("OK I am gone."); } } |
else { printf("OK I am go - C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit >> (i - (i -1))); } } |
|
|
main() { signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit = (bit >> (i - (i -1)))); } } |
|
|
main() { int i; clrscr(); for(i=0;i<5;i++) { printf("%dn", 1L << i); } } |
|
|
main() { { unsigned int bit=256; printf("%d", bit); } { unsigned int bit=512; printf("%d", bit); } } |
{ unsigned int bit=512;View Answer |
|
main() { int x=5; clrscr(); for(;x<= 0;x--) { printf("x=%d ", x--); } } |
}View Answer |
|
main() { int x=5; for(;x!=0;x--) { printf("x=%dn", x--); } } |
} - C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { int x=5; clrscr(); for(;x==0;x--) { printf("x=%dn?", x--); } } |
} - C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { int i =10, j = 20; clrscr(); printf("%d, %d, ", j-- , --i); printf("%d, %d ", j++ , ++i); } |
|
|
void main () { int x = 10; printf ("x = %d, y = %d", x,--x++); } |
- C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { char c; int i = 456; clrscr(); c = i; printf("%d", c); } |
- C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { int c = 5; printf("%d", main||c); } |
- C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { int i = 100; clrscr(); printf("%d", sizeof(sizeof(i))); } |
- C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { printf("%d, %d", sizeof('c'), sizeof(100)); } |
- C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
void func1(int (*a)[10]) { printf("Ok it works"); } void func2(int a[][10]) { printf("Will this work?"); } main() { int a[10][10]; func1(a); func2(a); } |
void func2(int a[][10]) { prin - C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { char *a = "Hello "; char *b = "World"; clrscr(); printf("%s", strcpy(a,b)); } |
clrscr(); printf("%s", strcpy(a,b));< - C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
main() { char *a = "Hello "; char *b = "World"; clrscr(); printf("%s", strcat(a,b)); } |
clrscr(); printf("%s", strcat(a,b));< - C Interview Questions & Answers" class="btn btn-primary btn-xs">View Answer |
|
struct Foo { char *pName; char *pAddress; }; main() { struct Foo *obj = malloc(sizeof(struct Foo)); clrscr(); obj->pName = malloc(100); obj->pAddress = malloc(100); strcpy(obj->pName,"Your Name"); strcpy(obj->pAddress, "Your Address"); free(obj); printf("%s", obj->pName); printf("%s", obj->pAddress); } |
|
Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.
View All C Interview Questions & Answers - Exam Mode / Learning Mode
India News Network |