fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(){
  5. char mat[200][100];
  6. strcpy(mat[0], "paulo");
  7. printf("%s", mat[0]);
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/307975/101
Success #stdin #stdout 0s 4352KB
stdin
Standard input is empty
stdout
paulo