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 |
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is volatile variable how do you declare it?
What 'lex' does?
Write a program to add a given duration with time(24hrs format)
What are the 4 types of organizational structures?
What is the purpose of the statement: strcat (S2, S1)?
What is c++ used for today?
Write a program to find factorial of a number using recursive function.
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
the question is that what you have been doing all these periods (one year gap)
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
what is difference between overriding and overloading?