do you think its fraud or original company?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how to find that no is int or float?

5 Answers  


what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }

1 Answers  


What is the difference b/w main() in C language and main() in C++.

7 Answers  


What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack

6 Answers  


in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

2 Answers   NetApp,






How do we open a binary file in Read/Write mode in C?

0 Answers   Alter,


what is the full form of c language

9 Answers   Satyam, TCS, VNC,


#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


Tell me when would you use a pointer to a function?

0 Answers  


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


If the static variable is declared as global, will it be same as extern?

1 Answers   Samsung,


What is a macro, and explain how do you use it?

0 Answers  


Categories