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

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 Erasure Code纠删码表
    • ¥15 用vite创建的vue3项目,404重定向不起作用??
    • ¥15 关于#c语言#的问题:一个球从80米高度自由落下,每次落地后反弹的高度为原高度的一半计算6次小球反弹的高度.(反弹结果取整,使用走走for循环结构)
    • ¥15 SurfaceControl的screenshot问题
    • ¥15 基于51单片机的oled菜单代码,要C语言,模块化编程!
    • ¥15 JAVAswing,设计一个扑克牌什么的
    • ¥50 python ctypes调用dll实现分析
    • ¥40 用python解决数据统计问题
    • ¥100 是否有方案能通过抓包分析得到移动应用的名称和包名信息?
    • ¥15 opencv检测不到轮廓