Merhaba
array kullanarak öğrenci sayısı giricem. Ogrenciye not vermek icin 1 ,ogrencinin notunu ogrenmek icin 2 ye basiniz, tum ogrencilerin notunu gormek icin 3 e basiniz:
1 e basınca
Öğrenci no girip, bu öğrenciye not giricem 3 basınca girdiğim notları görücem
Ben şöyle bir giriş yaptım ama beceremiyorum yardım ederseniz sevinirim
//#include <iostream.h>
#include <stdio.h>
#include <stdlib.h>
void main()
{
//Öğrenci Sayısı
int OgrenciSayisi;
//Öğrenci No ve Notları için
int *ogrencino, *ogrencinot;
printf(“Öğrenci Sayısını Giriniz:”);
scanf(“%d”,&OgrenciSayisi);
ogrencino = (int*) malloc(sizeof(int) *OgrenciSayisi);
free(ogrencino );
ogrencinot = (int*) malloc(sizeof(int) *OgrenciSayisi);
free(ogrencinot );
}