fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("The C Program For Today!\n");
  5. char x[80] = "Today Is Thursday October 24, 2024!";
  6. printf("X %-s\n", x);
  7. return 0;
  8. }
Success #stdin #stdout 0s 5284KB
stdin
1
2
10
42
11
stdout
The C Program For Today!
X  Today Is Thursday October 24, 2024!