Explain what are compound statements?
No Answer is Posted For this Question
Be the First to Post Answer
program to find the magic square
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
Without Computer networks, Computers will be half the use. Comment.
How reliable are floating-point comparisons?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Explain the difference between exit() and _exit() function?
What is the purpose of sprintf() function?
What is difference between array and pointer in c?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;