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