largest Of three Number using without if condition?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
How can you increase the size of a dynamically allocated array?
Explain what does a function declared as pascal do differently?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Explain pointer. What are function pointers in C?
give an example of type casting by a simple c program
How can I do serial ("comm") port I/O?
Give basis knowledge of web designing ...
what are bitwise shift operators?
What do you know about the use of bit field?
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,