使用字符,整数和浮点数据类型的示例

#include <stdio.h>
int main()
{
    printf(this is a test %c \n, \'C\');
    printf(test %d\n, 2);
    printf(test %.1f , 99.9);
    printf(test !\n);
    return 0;
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...