What is an lvalue?
No Answer is Posted For this Question
Be the First to Post Answer
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
prog for 1st five prime numbers in 2^x - 1
Differentiate between null and void pointers.
c program to manipulate x=1!+2!+3!+...+n! using recursion
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What are the difference between a free-standing and a hosted environment?
What is equivalent to ++i+++j?
What is ambagious result in C? explain with an example.
Under what circumstances does a name clash occur?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none