fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char strX[] = "0123456789";
  6. printf("%d\n",strlen(strX));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
10