fork download
  1. #include <stdio.h>
  2. int main() {
  3. printf("%-1s %1d\n", "Name:",12345); // จัดข้อความให้ชิดซ้ายและตัวเลขชิ
  4. printf("%10.20d\n", 123.456); // แสดงเลขทศนิยม 2 ตำแหน่งโดยจัดให้ชิดขวา
  5. printf("%10.10f\n", 42); // แสดงเลขจำนวนเต็มพร้อมเติมเลขศูนย์ด้านหน้า
  6.  
  7. return 0;
  8.  
  9. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Name: 12345
00000000000000000000
123.4560000000