fork download
  1. #include <stdio.h>
  2.  
  3. #define STRING_SIZE( STR ) sizeof(STR)
  4.  
  5. int main(void) {
  6. printf("%d", STRING_SIZE("OP HUY"));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
7