fork download
  1. #include <iostream>
  2. #include <stdio.h>
  3. int somma = 10 + 2;
  4. int main() {
  5. char carattere = 'A';
  6. printf( " carattere è: %c\n " , carattere);
  7. printf("Somma %d\n ",somma);
  8. printf( "hello world ");
  9. return 0;
  10. }
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
 carattere è: A
 Somma 12
 hello world