fork download
  1. #include <stdio.h>
  2. #define STRINGATO(a) # a
  3. #define SALUTO STRINGATO (Ciao! come stai?\n)
  4. int main (void)
  5. {
  6. printf (SALUTO);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
Ciao! come stai?