Array basis

#include<stdio.h>


int main(){

    int marks[5];


    for(int i=0; i<5; i++)

    {

        printf("Enter the value of marks for student %d: ", i+1);

        scanf("%d", &marks[i]);

    }


    for(int i=0; i<5; i++)

    {

        printf("The value of marks for student %d is: %d \n", i+1, marks[i]); 

    }


    return 0;

}

Comments

Popular posts from this blog

Snake game.c

Type declaration

Array with function