fork download
  1. #include <stdio.h>
  2. #include<stdlib.h>
  3.  
  4. int main(void) {
  5. int size;
  6. scanf("%d",&size);
  7. char *str=(char*)malloc((size+1)*sizeof(char));
  8.  
  9. fgets(str,size+1,stdin);
  10. puts(str);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5296KB
stdin
3 
hello bro wwkk
stdout