Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
program
//gcc 5.4.0 #include <stdio.h> #define n 5 #define m 5 int main(void) { int scoreBoard[n][m] = {{10,20,30,40,50}, {11,21,31,41,51}, {12,22,32,42,52}, {13,23,33,43,53},{14,24,34,44,54}}; for(int i=0; i<n; ++i){ for(int j=0; j<m; ++j) printf("scores[%d][%d] = %d", i, j, scoreBoard[j][i]); printf("\n"); } return (0); }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
b=1 c=1
Card shuffling and dealing program using structures
Linked List
Area of the Cone
EL PANGRAMA PERFECTO
Assignment 2
mapOfIndia
Lab 7 blackjack v0.6
Busqueda binaria version recursiva
bit shift and mask
Please log in to post a comment.