报错合集
个人编程报错
zx个人笔记
zx学习史
展开
-
【无标题】取子串中的问题
1.加‘\n’导致控制台表面上看不响应。2.输入字符串。用scanf和gets的区别。scanf遇空格停止,gets录入空格。(虽然‘\0'打印出来是’ ‘ ,但是在判断是要区分转义字符’\0'和‘ ’,‘\0'的ASCll码是0,’ ‘的ascll码是32.#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char a[1000],b[10...原创 2021-11-23 17:43:15 · 674 阅读 · 0 评论 -
warning: passing argument x of xxx from incompatible pointer type
原因:指针类型不符原创 2021-11-23 13:47:29 · 3226 阅读 · 0 评论 -
(code blocks)error: invalid initializer|
int a[10][10],i,j; for(i=0;i<10;i++) { for(j=0;j<=i;j++) { int a[0][0]=1;报错原因:个人理解,这个伪代码中的问题为重复定义。解决:把int a[0][0]=1改为a[0][0]=1。原创 2021-11-15 22:40:46 · 7340 阅读 · 0 评论 -
warning: implicit declaration of function ‘strlen‘ [-Wimplicit-function-decla
原因:没有在main函数之前加所需函数。解决: 对比:...原创 2021-11-09 20:53:36 · 4822 阅读 · 1 评论 -
warning: unused variable ‘D‘ [-Wunused-variable]|
定义的量没使用1.删除。2.骗过编译器。(不懂格式,回来补充) int D; (void)i;原创 2021-11-07 16:00:45 · 3872 阅读 · 0 评论 -
报错记录
c语言报错记录vs报错scanf原创 2021-11-06 10:45:06 · 682 阅读 · 0 评论 -
error: invalid suffix “x“ on integer constant|
错误形式:3x-1.正确行使:3*x-1.原创 2021-11-07 15:20:46 · 4732 阅读 · 0 评论