Which is more efficient, a switch statement or an if else chain?
No Answer is Posted For this Question
Be the First to Post Answer
List the difference between a 'copy constructor' and a 'assignment operator' in C?
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
Can a variable be both constant and volatile?
Explain what is the most efficient way to store flag values?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
what is difference between array of characters and string
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
What are different types of variables in c?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
How can I write functions that take a variable number of arguments?
What are local and global variables?