Computer Science, asked by rithikashrisakthi4, 1 month ago

Write a program to display the name of your school and its address using output statements. Note: display each detail in individual lines.

please answer soon
will mark u as brainliest
wrong answers will be reported​

Answers

Answered by divyanshikhandwal
1

Answer:

#include <stdio.h>

struct student {

char name[50];

int roll;

float marks;

} s;

int main() {

printf("Enter information:\n");

printf("Enter name: ");

fgets(s.name, sizeof(s.name), stdin);

printf("Enter roll number: ");

scanf("%d", &s.roll);

printf("Enter marks: ");

scanf("%f", &s.marks);

printf("Displaying Information:\n");

printf("Name: ");

printf("%s", s.name);

printf("Roll number: %d\n", s.roll);

printf("Marks: %.1f\n", s.marks);

return 0;

}

Output

Enter information:

Enter name: Jack

Enter roll number: 23

Enter marks: 34.5

Displaying Information:

Name: Jack

Roll number: 23

Marks: 34.5

Explanation:

itzdivyanshi

Answered by Anonymous
0

Answer:

  • Write a program to display the name of your school and its address using output statements. Note: display each detail in individual lines.</li></ul><p><strong>Explanation:</strong></p><p> `

Similar questions