我目前正在学习C语言中的结构,在处理结构和数组时遇到一些问题,我需要创建一个代码,该代码使用包含char **变量的结构,然后我需要使用该结构创建两个char **字符串,并将其用于存储一些字符串。
可悲的是,我无法创建这两个char **字符串。你们可以帮我吗?
P.S:如果您可以向我解释如何将结构体与数组和动态数组/字符串一起使用,我将非常高兴,我需要了解另一个问题:)
这是我已经做的:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 4
#define MIN 1
typedef struct lists
{
char** reasons;
}lists;
int welcomeAndInput(char** pros, char** cons);
void addCon(char** cons);
void addPro(char** pros);
int main(void)
{
int result = 1;
lists cons = { (char**)malloc(sizeof(char*) * 1) };
lists pros = { (char**)malloc(sizeof(char*) * 1) };
while (result != 0)
{
result = welcomeAndInput(pros, cons);
}
getchar();
return 0;
}
int welcomeAndInput(char** pros, char** cons)
{
int result = 0;
printf("Choose an option: \n");
printf("1: Add a PRO reason \n");
printf("2: Add a CON reason \n");
printf("3: Print your reasons\n");
printf("4: Exit \n");
scanf("%d", &result);
getchar();
while (result != 0)
{
switch (result)
{
case 1:
{
addPro(pros);
break;
}
case 2:
{
addCon(cons);
break;
}
case 3:
{
break;
}
case 4:
{
result = 0;
break;
}
default:
{
while (result < MIN || result > MAX)
{
printf("Enter a valid input!");
scanf("%d", &result);
}
}
}
}
}
void addPro(char** pros)
{
}
void addCon(char** cons)
谢谢!
P.S -V2:所以我注意到我实际上给了你错误的代码,这是我确实设法完成的代码。我知道welcomeAndInput调用是错误的:)
答案 0 :(得分:0)
我只添加了一些东西,它不是完整的解决方案,但是它将帮助您解决您的解决方案,我没有释放任何分配的内存,您可以发布最终/完成的解决方案。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 4
#define MIN 1
typedef struct list
{
char** reason;
}lists;
int welcomeAndInput(lists *pros, lists* cons);
//void addCon(char** cons);
//void addPro(char** pros);
void addreason(lists* pros);
int main(void)
{
int result = 1;
lists cons = { (char**)malloc(sizeof(char*) * 1) };
lists pros = { (char**)malloc(sizeof(char*) * 1) };
while (result != 0)
{
result = welcomeAndInput(&pros, &cons);
}
printf("reason : %s \n",pros.reason[0] );
getchar();
return 0;
}
int welcomeAndInput(lists *pros, lists* cons)
{
int result = 0;
printf("Choose an option: \n");
printf("1: Add a PRO reason \n");
printf("2: Add a CON reason \n");
printf("3: Print your reasons\n");
printf("4: Exit \n");
scanf("%d", &result);
//getchar();
//while (result != 0)
{
switch (result)
{
case 1:
{
addreason(pros);
break;
}
case 2:
{
addreason(cons);
break;
}
case 3:
{
break;
}
case 4:
{
result = 0;
break;
}
default:
//{
// while (result < MIN || result > MAX)
//{
printf("Invalid input!");
// scanf("%d", &result);
//}
//}*/
}
}
return result;
}
void addreason(lists* pros)
{
char *reason = malloc(sizeof(char) * 256);
int count=0;
printf("enter reason :");
getchar();
while (count <256){
reason[count]=getchar();
if ('\n' == reason[count])
break;
count++;
}
//fgets(reason, 256, stdin);//
pros->reason[0]=reason;
}