fork download
  1. #include <stdio.h>//Cにはprintf関数がないため説明書の意味を成す
  2.  
  3. int main(void)
  4. {
  5. printf("Intel\t: Pentium4\n");
  6. printf("AMD\t: Athlon64\n");
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Intel	: Pentium4
AMD	: Athlon64