Skip to content

Instantly share code, notes, and snippets.

@gokhanyavas
gokhanyavas / gist:5589785
Created May 16, 2013 06:34
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];