Write a program to find the biggest number of three numbers in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Which header file is essential for using strcmp function?

0 Answers  


What is indirect recursion? give an example?

4 Answers  


What is queue in c?

0 Answers  


What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?

1 Answers  


7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above

10 Answers   Accenture,


What is 'bus error'?

0 Answers  


what are the general concepts of c and c++

2 Answers  


How do you search data in a data file using random access method?

0 Answers  


What is the difference between declaring a variable and defining a variable?

0 Answers  


Explain why c is faster than c++?

0 Answers  


#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?

4 Answers   Ramco,


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


Categories