fork download
  1. #define F(A)A
  2. #define ToText0(A)#A
  3. #define ToText(A)ToText0(A)
  4. #include <stdio.h>
  5. int main()
  6. {
  7. const char str[]=ToText( int value = F( 1 ) 1 ; );
  8. printf("%s\n",str);
  9. return 0;
  10. }
Success #stdin #stdout 0s 2884KB
stdin
Standard input is empty
stdout
int value = 1 1 ;