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

How can I read a binary data file properly?

0 Answers  


Is c easier than java?

0 Answers  


Can stdout be forced to print somewhere other than the screen?

0 Answers  


Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

0 Answers  


What is the difference between a free-standing and a hosted environment?

0 Answers   Aspire,






Is null equal to 0 in sql?

0 Answers  


Are pointers integers in c?

0 Answers  


Explain how do you declare an array that will hold more than 64kb of data?

0 Answers  


What is the size of structure in c?

0 Answers  


What is c definition?

0 Answers  


write a program for the normal snake games find in most of the mobiles.

0 Answers   Accenture, Wipro,


WHAT IS C?

6 Answers  


Categories