博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c语言用指针定义一个类型进行输入输出
阅读量:5293 次
发布时间:2019-06-14

本文共 593 字,大约阅读时间需要 1 分钟。

1 整型数组

//#include "stdafx.h"#include "stdlib.h"int _tmain(int argc, _TCHAR* argv[]){int *q=(int*)malloc(sizeof(int)*5);   //malloc函数动态分配5个整型数的地址空间。printf("Please input:");for(int i=0;i<5;i++)scanf("%d",q+i);  for(int i=0;i<5;i++)  printf("%d ",*(q+i));    system("pause");    return 0;}

2 定义有一个字符串进行输入输出

#include "stdafx.h"#include "stdlib.h"int _tmain(int argc, _TCHAR* argv[]){char *str=(char*)malloc(100);   //malloc函数动态分配地址空间。printf("Please input:");scanf("%s",str);   printf("%s",str);   //注意 不用加 *    system("pause");     return 0;}

 

转载于:https://www.cnblogs.com/mhq-martin/p/11392106.html

你可能感兴趣的文章
Linux下安装Python3.6和第三方库
查看>>
【刷题记录】BZOJ2154 crash的数字表格 莫比乌斯反演
查看>>
IE不兼容document.getElementsByClassName
查看>>
iOS ---Extension编程指南
查看>>
iOS开发UI篇—九宫格坐标计算
查看>>
laravel5.8ajax请求auth认证返回302的解决方法。
查看>>
POJ 1321 棋盘问题
查看>>
linux 安装weblogic12.1.3.0步骤
查看>>
SpringBoot使用thymeleaf时候遇到无法渲染问题(404/500)
查看>>
Red Hat安全性指南
查看>>
《构建之法》第五章自习感想与知识点
查看>>
[Swift]LeetCode741. 摘樱桃 | Cherry Pickup
查看>>
[Xcode 实际操作]六、媒体与动画-(8)使用CATransaction Reveal制作渐显动画
查看>>
[Xcode 实际操作]八、网络与多线程-(5)使用UIApplication对象发送邮件
查看>>
bzoj 1093: [ZJOI2007]最大半连通子图
查看>>
springCloud的zuul基于config和github实现热更新
查看>>
python学习笔记(pip下载安装)
查看>>
CSS
查看>>
shell 管道和tee使用时获取前面命令返回值
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>