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
What is typedf?
Write a program to swap two numbers without using third variable in c?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
What is difference between class and structure?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is sizeof in c?
Write a code of a general series where the next element is the sum of last k terms.
What is the purpose of sprintf?
What is the exact difference between '\0' and ""
What is meant by gets in c?
What is volatile, register definition in C
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A