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