write a c program to find the largest and 2nd largest
numbers from the given n numbers without using arrays


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

Post New Answer

More C Interview Questions

What is clrscr in c?

0 Answers  


What is indirect recursion? give an example?

4 Answers  


How can this be legal c?

0 Answers  


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


What is union in c?

0 Answers  


What are register variables in c?

0 Answers  


Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?

0 Answers   Genpact,


what is available in C language but not in C++?

10 Answers   CTS, TCS,


What is the difference between GETS();AND SCANF();

4 Answers   TCS,


What are the Advantages of using macro

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


can we access one file to one directory?

1 Answers  


Categories