#adduser wang
//添加一个名为wang的用户
#passwd wang //修改密码
Changing password for user wang.
New UNIX password: //在这里输入新密码
Retype new UNIX password: //再次输入新密码
passwd: all authentication tokens updated successfully.
- /* https://blog.csdn.net/qq_41854911/article/details/119453790 */
- /* https://www.jianshu.com/p/09f295082728 */
-
- #include <assert.h>
- #include <stdio.h>
-
- int main()
- {
- int a;
- char str[50];
-
- printf("请输入一个整数值: ");
- scanf("%d", &a);
- assert(a >= 10);
-
- printf("输入的整数是: %d\n", a);
-
- printf("请输入字符串: ");
- scanf("%s", str);
- assert(str != NULL);
-
- printf("输入的字符串是: %s\n", str);
-
- return(0);
- }
用 gcc 进行编译、链接、运行
输入的整数大于10时候即可输入字符串,若小于10则中断
将本机的txt文件传输给虚拟机
收到txt
树莓派之小试牛刀。