标签:c语言
c++程序运行停止工作,编译无错。高手们看看
#include<stdlib.h> #include<iostream.h> void sortArray(int[],int); void displayArray(int[],int); int main() { int *a; int i,num; //输入要排序的整数数目 cout<<“please……
用指针操作三维数组的问题
本人想用指针操作三维数组,于是编了如下的代码,用gcc编译成功了,但是报错。 到网上去搜索没有找到解决方案,求帮助各位大神指点一下。 Segmentation fault (core dumped) #include <stdio.h> int main() { int arr[3][5][7]; int (*……
C语言低级问题 函数调用求帮助
#include<stdio.h> void add(char shuru); main(){ add(“sadasd”); } void add(char shuru){ printf(“hello%s\n”,shuru); } 解决方案:20分 参数类型错误。char 不是 char* ……
C语言指针数组维度问题!
int main(int argc,int *gars[]) // 这里的int *gars[]指针数组不是一维的吗?为什么这样定义是二维的? { //不是很明白,求高手解释下,谢谢! if (argc < 4) { printf(“参数不足,程序退出\……
C语言[Error] declaration of 'int k' shadow a parameter
#include<math.h> int f(int k) { int k,i,flag; for(i=2;i<=(int)sqrt((double)k);i++) { if(k%i==0) flag=0;break;} if(flag) return 1; else return 0; } #include<stdio.……
学习日记二:多项式加法,乘法又出错
加法对的,乘法运行不了 将p1的第k项分别与p2的各项相乘然后与结果多项式各项比较 逻辑错了么? 上次看了别人的,希望可以用本人的方法,错在哪里 #include <stdio.h> #include <stdlib.h> typedef struct node PolyNode ; typedef struct node* Ptr……
为什么程序只能输出未插入数据前的链表
为什么程序只能输出未插入数据前的链表 #include <stdio.h> #include <stdlib.h> typedef struct node ListNode ; typedef struct node* PtrList ; struct node { int data ; struct node* next ;……