fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int i = 0; // กำหนดตัวแปรเริ่มต้น
  5. char text[] = "ENGINEERING"; // กำหนดข้อความ
  6.  
  7. while (i < 7) { // ลูปจะทำงานจนกว่า i < 7
  8. printf("%c", text[i]); // พิมพ์ตัวอักษรในตำแหน่ง i
  9. i++; // เพิ่มค่า i ทีละ 1
  10. }
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
ENGINEE