How do I read the arrow keys? What about function keys?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between pass by reference and pass by value?
marge linklist
Mention four important string handling functions in c languages .
what is a headerfile?and what will be a program without it explain nan example?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
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.
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
Explain what is the best way to comment out a section of code that contains comments?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
In a switch statement, what will happen if a break statement is omitted?