write a c program to store and print name,address,roll.no of
a student using structures?
Answers were Sorted based on User's Feedback
Answer / balaji ganesh
#include<string.h>
#include<conio.h>
#include<stdio.h>
struct student
{
char name[20],adr[5][10];
int no;
}s;
main()
{
int i,j;
clrscr();
scanf("%d",&s.no,printf("enter no of the student:"));
scanf("%s",s.name,printf("enter name of student:"));
printf("enter address(5 lines):\n");
for(i=0;i<=5;i++)
{
j=0;
while((s.adr[i][j++]=getchar())!='\n');
}
printf("\nstudent details are:\n\nRoll.no: %d\n\nName : %s\n\nadress:",s.no,s.name);
for(i=0;i<=5;i++)
printf("\t%s",s.adr[i]);
getch();
}
| Is This Answer Correct ? | 139 Yes | 97 No |
Answer / raj
#include<string.h>
#include<conio.h>
#include<stdio.h>
struct student
{
char name[20],adr[5][10];
int no;
}s;
main()
{
int i,j;
clrscr();
scanf("%d",&s.no,printf("enter no of the student:"));
scanf("%s",s.name,printf("enter name of student:"));
printf("enter address(5 lines):\n");
for(i=0;i<=5;i++)
{
j=0;
while((s.adr[i][j++]=getchar())!='\n');
}
printf("\nstudent details are:\n\nRoll.no: %d\n\nName :
%s\n\nadress:",s.no,s.name);
for(i=0;i<=5;i++)
printf("\t%s",s.adr[i]);
getch();
}
| Is This Answer Correct ? | 33 Yes | 28 No |
Answer / fasfasdfdsaf
http://www.cprogrammingexpert.com/C/Tutorial/fundamentals/datatypes/data_types.aspx
| Is This Answer Correct ? | 8 Yes | 18 No |
Answer / nidhina
enter the number of students 2
enter the name anu
enter the address ui
fh
fn
hg
hgn
rollno 2
name anu
address
ui fh
fn
hg
hgn
| Is This Answer Correct ? | 2 Yes | 15 No |
Answer / laxmi bose
#include<stdio.h>
#include<string.h>
#include<conio.h>
struct laxmi
{
int rollname;
char name;
char address;
}struct laxmi l;
void main()
{
scanf("%d%c%c",&rollname,name,address);
printf("%d%c%c",roolname,name,address);
}
| Is This Answer Correct ? | 54 Yes | 88 No |
Answer / carrie
write a program to accept a salesman name and monthly sales
amount and calculate the commision as per the given criteria
SALES COMMISION
<=10000 0
>10000 and <=25000 10% of sales amount
>25000 and <=100000 20% of sales amount
>100000 25% of sales amount
| Is This Answer Correct ? | 12 Yes | 59 No |
How many types of errors are there in c language? Explain
Explain how do you print an address?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
Write a program to print factorial of given number without using recursion?
What is null in c?
find largest of 3 no
What is the right type to use for boolean values in c?
which one low Priority in c? a)=,b)++,c)==,d)+
What is indirect recursion? give an example?
Can we assign integer value to char in c?
can we define a function in structure?
ASCII stands for