Write a program to find the biggest number of three numbers in c?
Which header file is essential for using strcmp function?
What is indirect recursion? give an example?
What is queue in c?
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is 'bus error'?
what are the general concepts of c and c++
How do you search data in a data file using random access method?
What is the difference between declaring a variable and defining a variable?
Explain why c is faster than c++?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar