数据写入文本 出现乱码 请教

数据写入文本 出现乱码 请教

#include <stdio.h> #include <stdlib.h> #define N 30 typedef struct contacts {      long CONTACTSPhone; char CONTACTSName[10]; char CONTACTSAdress[10]; long CONTACTSPost……

提问,char msg[]和 char *msg 使用区别

提问,char msg[]和 char *msg 使用区别

#include<stdio.h> #include<string.h> void fit(char *,unsigned int); int main() { char mesg[] = “Hold on to your hats,hackers. “; fit(mesg,7); puts(mesg); re……

声明*C某类::Getdocument();(已声明,不兼容)

声明*C某类::Getdocument();(已声明,不兼容)

创建了一个CRightWindow类,基类为CScrollView,在.h文件中如下: public: CMy2015Doc* GetDocument();           // error C2143: 语法错误 : 缺少“;”(在“*”的前面) // error C4430: 缺少类型说明符 – 假定为 int。注意: C++ 不支持默认……

extern C语言中外部变量和的一些疑惑

extern C语言中外部变量和的一些疑惑

本人在学习外部变量的时候,发现  extern 类型名 变量名  这个格式既可以作为外部变量的定义,也可以作为对外部变量引用的声明,故产生疑问:C中怎么样判断本人是在定义外部变量还是在对本人即将引用的外部变量进行声明呢? 图一: 图二: 图三: 图四: 图五: 图二和图五中的程序一模一样,而且都是正确编译,但结果却迥然不同,本人想不仅本人糊涂了,估……

Dev C++多文件编译问题

Dev C++多文件编译问题

新手,请高手多多帮助,先感谢! 说明:图中项目管理中的每一个c文件都只实现一个函数功能,Bll.h里面是函数声明。本人在主函数main.c中已经包含了stdio.h头文件,然后从主函数调用iMainMenu(),这个函数放在iMainMenu.c中,报stdin在该函数中未声明,如下图: 本人的问题是:main.c中包含的头文件怎么样与其它cpp文件关联起……

C语言错误提示

C语言错误提示

这是小串代码 不完整 但也没啥错误 #include”stdio.h” int mian() { int n1,n2,n3; int *p1,*p2,*p3; printf(“Input three Integer n1,n2,n3:”); scanf(“%d,%d,%d”,&n……

求指导C一个关于scanf拿不拿到值得问题

求指导C一个关于scanf拿不拿到值得问题

#include <stdio.h> int main() { int sum = 0, num = 0; char end = 0; while  ( end != “q” ) { scanf( “%d”, &num ) ; sum += num; scanf( “%cR……