How to throw some light on the b tree?
No Answer is Posted For this Question
Be the First to Post Answer
Can a variable be both const and volatile?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Explain why C language is procedural?
write a method for an array in which it can display the largest n next largest value.
can you change name of main()?how?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
The difference between printf and fprintf is ?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
what is a function pointer and how all to declare ,define and implement it ???
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above