tailieunhanh - Bài giảng Tin học đại cương A (dành cho khối tự nhiên): Input and Output
Chương sau đây trình bày các kiến thức về xuất nhập trong C (Input and Output). Đây là tài liệu hữu ích cho những ai đang học Tin học đại cương khối tự nhiên. Tài liệu được viết bằng ngôn ngữ tiếng Anh. Mời các bạn cùng theo dõi. | Input & Output Nguyen Dung Faculty of IT - College of Science Functions I/O Input: scanf gets getch getchar Output printf puts putch scanf printf gets puts getch getchar putch Output - printf List arguments int printf (const char *format [,argument, ]) string (plain text) Format string format specifier %[flags][width][.prec]type_char %[flags][width][.prec] type_char Code Out put d Integer number u Unsigned integer ld Long integer lu Unsigned long integer o Octal x, X Hexa f Real number: float, double E, e Real number: float, double G, g Real number: floar, double c Character: char s String: array char p Address Different??? %[flags][width][.prec] type_char int x = 5; float y = 10; printf(“x = %d, y = %f, z = %d”, x, y, x + y); x = 5, y = 10, z = 15
đang nạp các trang xem trước