abcdcba12345654321 2013-12-16 12:17 采纳率: 100%
浏览 4239
已采纳

c语言结构体中指针数组怎样赋值

定义一个结构体
struct AS
{
char *p[1];
};
怎样用gets函数给指针数组赋值呢?

  • 写回答

1条回答

  • gaintsord 2013-12-17 03:39
    关注

    看Unix/Linux上的man:

    Standard C Library Functions gets(3C)
    NAME
    gets, fgets - get a string from a stream

    SYNOPSIS
    #include

     char *gets(char *s);
    
     char *fgets(char *s, int n, FILE *stream);
    

    DESCRIPTION
    The gets() function reads bytes from the standard input
    stream (see intro(3)), stdin, into the array pointed to by
    s, until a newline character is read or an end-of-file con-
    dition is encountered. The newline character is discarded
    and the string is terminated with a null byte.
    ....

    gets是标准库函数,要求传入的是一个数组的地址。其实是要求caller应当分配空间给他。你的结构体中指针数组指向了已经分配好的内存吗?如果没有就别想了。想用就自己先给他空间

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条