Computer Science, asked by achouhanxxx11, 1 month ago

C++ experts
Here's a question for you all


1) Write a program in c++ to print your name,class,section and your school name.

Check out more c++ questions in my question list

Answers

Answered by Anonymous
1

Answer:

Explanation:

#include<iostream.h>

#include<conio.h>

void main()

{

clrscr ();

char name[30],school[30];

int class;

float age;

cout<<"enter name,class,age ,school";

cin>>name>>class>>age>>school;

}

uhomeTUTORIALEXAMPLESsearch

C Program to Store Information of Students Using Structure

This program stores the information (name, roll and marks) of 10 students using structures.

To understand this example, you should have the knowledge of following C programming topics:

C Programming ArraysC Programming Structure

In this program, a structure, student is created.

This structure has three members: name(string), roll (integer) and marks (float).

Then, we created a structure array of size 10 to store information of 10 students.

Using for loop, the program takes the information of 10 students from the user and displays it on the screen.

Example: Store Information in Structure and Display it

#include <stdio.h> struct student { char name[50]; int roll; float marks; } s[10]; int main() { int i; printf("Enter information of students:\n"); // storing information for(i=0; i<10; ++i) { s[i].roll = i+1; printf("\nFor roll number%d,\n",s[i].roll); printf("Enter name: "); scanf("%s",s[i].name); printf("Enter marks: "); scanf("%f",&s[i].marks); printf("\n"); } printf("Displaying Information:\n\n"); // displaying information for(i=0; i<10; ++i) { printf("\nRoll number: %d\n",i+1); printf("Name: "); puts(s[i].name); printf("Marks: %.1f",s[i].marks); printf("\n"); } return 0; }

Output

Enter information of students: For roll number1, Enter name: Tom Enter marks: 98 For roll number2, Enter name: Jerry Enter marks: 89

Similar questions