1. 首页>百科大全 > 百科

怎么把cpp保存为c

作者:李楠明
2020-05-28
百科

1. 为什么我的程序在保存为.CPP能运行,保存为.C不能运行

C不能象C++那样自由地声明变量。

修改如下:#include"stdio.h" #include"stdlib.h"#include"ctype.h"#include"string.h"typedef struct Student { char num[10]; char name[20]; double score; struct Student *next; struct Student *prior;}StudentList;void Display(StudentList **head,int n) { StudentList * current=*head; printf("-----------------------------------n"); printf("学号 姓名 成绩n"); printf("-----------------------------------n"); //移上 StudentList * current=*head; for(;current!=NULL&¤t->score>0;current=current->next) { printf("%-16s%-15s%lfn",current->num,current->name,current->score); } printf("");} int AddtoList(StudentList **head,StudentList **tail,StudentList* newNode){ StudentList *current=*tail; if(current->scoreprior=current; current->next=newNode; *tail=newNode; } (*tail)->next=NULL; return 1;} int Insert_a_record(StudentList **head,StudentList **tail, int n) //int Insert_a_record(int n) { int i=0; char sign,x[10]; while(sign!='n'&&sign!='N') { StudentList* stu = (StudentList*)malloc(sizeof(StudentList)); printf("学生学号:"); scanf("%s",stu->num); printf("学生姓名:"); scanf("%s",stu->name); printf("学生成绩:"); scanf("%lf",&stu->score); AddtoList(head,tail,stu); //AddtoList(&head,&tail,stu); gets(x); printf("是否增加更多?(Y/N)"); scanf("%c",&sign); i++; } return(n+i);}void main() { int n=0; int opt=0; StudentList *head= (StudentList*)malloc(sizeof(StudentList)); StudentList *tail= (StudentList*)malloc(sizeof(StudentList)); for(;;) { int c=0; printf("nn"); printf("1. 增加一条记录n"); printf("2. 显示n"); printf("0. 退出n"); printf("请选择):"); scanf("%d",&c); switch(c) { case 1: printf("增加新记录n"); n=Insert_a_record(&head,&tail,n); //n=Insert_a_record(n); break; case 2: printf("增加新记录n"); Display(&head, n) ; break; case 0: exit(0); } }}。

2. 写c程序保存c好还是cpp好

对于一个特定的项目,你要选择开发语言,开发工具以及各种基础库。

如果开发Windows桌面应用,一般是.Net(C#)或者MFC(C++),VS那一套。

如果开发Linux下的图形应用,一般选择Qt(C++),当然Qt是跨平台的,Windows下也可以用,对小公司来说,VS那一套还是太贵了。

如果开发嵌入式领域,操作系统,驱动什么的,目前来看非C莫属。

如果开发Android移动应用,一般是Java,现在好像又有了NDK,C++的。

如果开发iOS,一般是Xcode+Objective-C,好像Adobe也有一套,用Flash开发,没试过。

对于Web领域,各种脚本语言就更多了。

楼主竟然纠结于保存成C好还是CPP好,所以我大胆猜测楼主写的程序应该是一些小程序,没有界面,而且楼主使用的开发工具(编译器)应该是C和C++编译器。所以楼主大可不必纠结于保存成什么格式。如果非要我选一个,我建议楼主保存成C格式,因为楼主没有使用任何C++的特性。

推荐阅读
  • 努比亚z9max手机音乐效验

    该机拥有HIFI级音乐芯片,音乐效果不凡。具体体现在:1.音量调节,正常听音乐中高低音都是一个音量,而杜比音效能动态扩大某个音量。比如放打鼓声,杜比会及时提高低音加强鼓声。2.加强音域,杜比音效有开阔、集中、…

    百科 2024-11-15
  • 是atChristmas还是inChristmas

    此处该用“on”。在圣诞节正确表达应为 “on Christmas ”。有具体日期的,比如知道几月几日的都用“on” ;不知道日期,但知道年份和月份的用“in” ,知道具体时间,比如几点几分用“at”。…

    百科 2024-11-15
  • 个体工商户应交纳什么税

    纳税标准根据国家税务总局《个体工商户定期定额征收管理办法》文件精神 ,定期定额征收方式适用的税种及税率如下:1、根据《中华人民共和国增值税暂行条例》规定,自2009年1月1日起,小规模纳税人增值税征收率为3%…

    百科 2024-11-15
  • 材料成本差异率为负数是什么意思

    材料成本差异额,是指材料的实际成本和计划成本之间的差额。差异率负数表示节约差异,即实际成本比计划成本小。正数表示超支差异,即实际成本比计划成本大。…

    百科 2024-11-15
  • 塞翁失马焉知非福是什么意思

    比喻一时虽然受到损失,反而因此能得到好处。也指坏事在一定条件下可变为好事,反之亦然。形容人的心态,一定要乐观向上,任何事情都有二面性,不好的一面,有可能向好的一面转化。塞翁失马,焉知非福出自《 淮南子…

    百科 2024-11-15