Write a ‘C’ program to create student structure having field roll no, stud name,
class, pass this entire structure to function and display the structure elements.
#include<stdio.h>
#include<conio.h>
struct student
{
int rollno;
char sname[20];
char sclass[10];
};
void disp(struct student);
void main()
{
struct student s;
clrscr();
printf("enter the rollno,sname&sclass");
scanf("%d%s%s",&s.rollno,&s.sname,&s.sclass);
disp(s);
getch();
}
void disp(struct student s)
{
printf("%d%s%s",s.rollno,s.sname,s.sclass);
}
class, pass this entire structure to function and display the structure elements.
#include<stdio.h>
#include<conio.h>
struct student
{
int rollno;
char sname[20];
char sclass[10];
};
void disp(struct student);
void main()
{
struct student s;
clrscr();
printf("enter the rollno,sname&sclass");
scanf("%d%s%s",&s.rollno,&s.sname,&s.sclass);
disp(s);
getch();
}
void disp(struct student s)
{
printf("%d%s%s",s.rollno,s.sname,s.sclass);
}