C code won't compile
- by cc
Please help me to understand why the following code will not compile:
#include <stdio.h>
//#include <iostream>
//using namespace std;
int main(void){
int i,k,x,y,run,e,r,s,m,count=0;
char numbers[19][19];
for(i=0;i<19;i++){
for (k=0;k<19;k++){
numbers[i][k]='.';
}
}
void drawB(){
…