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 does sizeof int return?
What is structure in c language?
how many times of error occur in C
which type of question asked from c / c++ in interview.
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Why we use break in c?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
can any one provide me the notes of data structure for ignou cs-62 paper
Which header file is essential for using strcmp function?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
wtite a program that will multiply two integers in recursion function