Hi!
I'd like to change the size of a table.
For example when asked "How many rows you wanna make?"
You can choose max 10 rows eq.
When I´m inputting numbers for example
printf("How many rows wanna make?");
scanf("%d",k);
while(i<k)
scanf("%d",chart);
This does not work. Any tips?
Last edited on
If you're using c++, use a vector.