fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. printf("========================================\n");
  6. puts(" STUDENT ID ");
  7. printf("========================================\n");
  8. puts("Name : Hanz Victor D. Pagcu");
  9. puts("Student No. : 26-1182");
  10. puts("Age : 18");
  11. puts("Section : C-101");
  12. puts("Course : BS Computer Science");
  13. puts("School : City College of Angeles");
  14. puts("Academic Year : 2026-2027");
  15. printf("========================================\n");
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
========================================
               STUDENT ID              
========================================
Name          : Hanz Victor D. Pagcu
Student No.   : 26-1182
Age           : 18
Section       : C-101
Course        : BS Computer Science
School        : City College of Angeles
Academic Year : 2026-2027
========================================