Skip to content

Instantly share code, notes, and snippets.

@gokhanyavas
Created May 16, 2013 06:34
Show Gist options
  • Save gokhanyavas/5589785 to your computer and use it in GitHub Desktop.
Save gokhanyavas/5589785 to your computer and use it in GitHub Desktop.
NxN boyutlu bir matrisin esas köşegenin elemanlarının toplamını bulan C programı
#include <stdio.h>
#include<conio.h>
int main ()
{
int n, i, j, toplam;
toplam =0;
int mat[10][10];
printf("Matrisin boyutunu giriniz : ");
scanf("%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
{
printf("%d. satir ,%d.sutun elemani : ",i,j);
scanf("%d",&mat[i][j]);
}
for(i=1;i<=n;i++)
toplam=toplam+mat[i][i];
printf("Toplam : %d",toplam);
getch();
}
@arslanatakan
Copy link

Teşekkürler hocalarım.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment