#include<stdio.h> void main() { char str[10]; scanf("%s",str); printf("%s",*str); }为什么不对? str不是表示一个地址吗?不是应该加个*吗... str不是表示一个地址吗?不是应该加个*吗 展开 我来答 可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。 include scanf printf stdio.h void 搜索资料 2个回答 #热议# 海关有哪些禁运商品?查到后怎么办? guojingcha 2013-06-18 · TA获得超过1.1万个赞 知道大有可为答主 回答量:1.3万 采纳率:42% 帮助的人:9914万 我也去答题访问个人页 关注 展开全部 str表示地址没错,但是在输出的时候,只有定义为指针类型的变量才加*,否则是不需要加的。 本回答由提问者推荐 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 likehei 2013-06-18 · TA获得超过940个赞 知道小有建树答主 回答量:875 采纳率:33% 帮助的人:660万 我也去答题访问个人页 关注 展开全部 #include<stdio.h>void main() { char str[10]; scanf("%s",str); printf("%s",str); }*代表指针了 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询 其他类似问题 2021-06-27 #include <stdio.h> void main() { int a=28,b; char s[10],*p; p=s; do { b=a%16; if(b<10) *p=b+48; el 18 2022-12-10 #include "stdio.h"int main(){int m=9;for (; m > 0; m--)if (m % 3 == 0)printf("%d", --m);return 0;} 2018-03-01 #include<stdio.h> #include<string.h> void fun (char*w,int m) {char s,*p1,*p2; p1=w;p2=w+m-1; while( 77 2018-03-08 #include<stdio.h> int main() {int a=5,b=6,c=7,d=8,m=2,n=2; printf("%d",((m=a>b)&&(n=c>d))); } 60 2017-05-23 #include<stdio.h>main(){unsigned short a=65536;int b;printf("%d\n",b=a) ;}这个程序是什么意思,拜托 450 2018-02-27 #include<stdio.h> main( ) { int a=1,b=2; for(;a<8;a++){b+=a;a+=2;} printf("%d,%d\n",a,b); } 129 2020-03-30 #include<stdio.h> int *f(int *s) { s +=1; s[1] +=6; *s++ +=7; return s; } 5 2013-01-19 #include <stdio.h> void main() { printf("%d\n",1/3*3); } 这个哪里错了我怎么算不出来呢 13 更多类似问题 > 为你推荐: