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



write a c program to store and print name,address,roll.no of a student using structures?..

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

write a c program to store and print name,address,roll.no of a student using structures?..

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

write a c program to store and print name,address,roll.no of a student using structures?..

Answer / fasfasdfdsaf

http://www.cprogrammingexpert.com/C/Tutorial/fundamentals/datatypes/data_types.aspx

Is This Answer Correct ?    8 Yes 18 No

write a c program to store and print name,address,roll.no of a student using structures?..

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

write a c program to store and print name,address,roll.no of a student using structures?..

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

write a c program to store and print name,address,roll.no of a student using structures?..

Answer / krunal patel

I MA KRUNAL PATEL

Is This Answer Correct ?    15 Yes 54 No

write a c program to store and print name,address,roll.no of a student using structures?..

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

Post New Answer

More C Interview Questions

union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }

3 Answers  


What is indirection in c?

0 Answers  


Determine if a number is a power of 2 at O(1).

2 Answers  


How can I read a binary data file properly?

0 Answers  


WHAT IS INT?

8 Answers   Accenture,






What is the deal on sprintf_s return value?

0 Answers  


Write a Program to accept different goods with the number, price and date of purchase and display them

0 Answers   HDFC,


in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000

3 Answers  


What is the use of a ‘’ character?

0 Answers  


write a C program to print the program itself ?!

16 Answers   TCS,


In C, What is the #line used for?

2 Answers  


What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack

6 Answers  


Categories