c_cpp C中的基本用户输入功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp C中的基本用户输入功能相关的知识,希望对你有一定的参考价值。

#include "stdio.h"


//basic user input in C

int main() {
    
    setvbuf(stdout, NULL, _IONBF, 0);
    int f;
    printf("Say a number:");
    scanf("%d", &f);
    f += 50;
    printf("Here is the new number %d", f);
    return 0;
}

以上是关于c_cpp C中的基本用户输入功能的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp c中的基本函数指针示例

c_cpp C ++中的基本lambda示例

c_cpp c中的基本字符串复制

c_cpp C中的基本DNS查找实用程序

c_cpp C中的功能

c_cpp C中的功能节点系统