write a program that accepts 3 numbers from the user. dispaly
the values in a descending order.
Answer Posted / palani222samy
include<stdio.h>
int main()
{
int a,b,c;
printf("enter the a value")
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Are there constructors in c?
Why do we use & in c?
What is an lvalue in c?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Explain how can a program be made to print the name of a source file where an error occurs?
What is methods in c?
Explain what is wrong with this program statement?
What is an identifier?
How do you generate random numbers in C?
Is array name a pointer?
How can you find the exact size of a data type in c?
Differentiate between new and malloc(), delete and free() ?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()