首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
C语言有关链表,Dev 提示cstdlib.h 错误No such fi...

小萌2016-08-18 12:45 发布

标题:C语言有关链表,Dev 提示cstdlib.h 错误No such file or directory
#include<iostream>
#include<stdlib.h>
#include<cstdlib.h>
#define NULL 0
using namespace std;
struct student
{
       int num;
       //char name[10];
       int score;
       struct student * next;
};
int main()
{
    struct student a,b,c,* head,* p;
    a.num=1001; a.score=23;
    b.num=1002; b.score=56;
    c.num=1003; c.score=100;
    head=&a;
    a.next=&b;
    b.next=&c;
    c.next=NULL;
    head=p;
    do{
       printf("%-6ld%s\n",p->num,p->score);
       
       p=p->next;    
           }
     while(p!=NULL);           
           
    system("pause");
    return(0);
}
 
 
最新话题:

C语言兼职

W3wp进程劫持,已经加载了Dll ,但...

学习好的,需要兼职的,看过来

求助!

C语言程序设计现代方法第二版P152第...

请教C语言三个数中最大数问题

大家好!

求助大佬,请问哪里出错了,运行后...