Explain the difference between call by value and call by reference in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between structs and unions in c?
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
What is getch () for?
what is C?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
Can you think of a logic behind the game minesweeper.
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What is macro?
where does malloc() function get the memory?
What's wrong with "char *p; *p = malloc(10);"?
what is the use of macro program
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }