How do I declare and start an array of strings
?
I tried in many ways and I still did not succeed, I thought it would work fine but it did not work.
#include <stdio.h>
#include <stdlib.h>
int main(void){
char matriz[2][2];
char string1[] = "Minha string";
matriz[0][0] = string1;
printf("%s", matriz[0][0]);
return 0;
}