What is the proper way of these job
Tell me about there full work


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

Post New Answer

More C Interview Questions

void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

1 Answers  


Differentiate between null and void pointers.

0 Answers   TCS,


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

1 Answers  


#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39

1 Answers   GameLoft,


What is a spanning Tree?

2 Answers   TCS,


Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,


What is hungarian notation? Is it worthwhile?

1 Answers  


What is the difference between a string and an array?

1 Answers  


Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));

6 Answers   TCS,


#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.

1 Answers  


Explain enumerated types.

1 Answers  


Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

1 Answers  


Categories