Advertisements
Advertisements
Question
Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.
Solution
• The Structure for above given elements can be defined as :
struct student
{
char stud_name[20];
int roll_no;
int percentage;
};
Program:
#include<conio.h>
#include<stdio.h>
struct student
{
char stud_name[20];
int roll_no;
int percentage;
};
void main ()
{
struct student st[100];
int n,i,j;
clrscr();
for(i=0;i<=4;i++)
{
printf("Enter the student's name, roll number and percentage:");
scanf("%s %d %d" , st[i].stud_name,&st[i].roll_no,&st[i].percentage);
}
printf("Name\tRoll No\tpercentage\n");
printf("----------------------------------------------\n");
for(i=0;i<=4;i++)
{
printf("%s\t%d\t%d\n",st[i].stud_name, st[i].roll_no, st[i].percentage);
}
getch();
}
Output: Enter the student's name, roll number and percentage: ketan 01 90 Enter the student's name, roll number and percentage: carry 02 91 Enter the student's name, roll number and percentage: tom 03 92 Enter the student's name, roll number and percentage: jerry 04 95 Enter the student's name, roll number and percentage: bob 05 96 Name Roll No Percentage ------------------------------------------------------ ketan 01 90 carry 02 91 tom 03 92 jerry 04 95 bob 05 96 |
APPEARS IN
RELATED QUESTIONS
Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}
Write a program to validate whether accepted string is palindrome or not.
Write a program to find transpose of matrix without making use of another matrix.
State True or False with reason.
while(0); is an infinite loop.
WAP to print the sum of following series.
1+22+33+………+nn
Write a program to perform matrix multiplication by passing input matrix to the function and printing resultant matrix.
Write a program to display following pattern:
1
232
34543
4567654
567898765
WAP to print all possible combination of 1,2,3 using nested loops.
Write a program for finding sum of series 1+2+3+4+…….upto n terms.
Explain continue and break statements with the help of suitable examples.