hello friends,
i m doing programming in vc++.
but while making a basic program of link list facing a problem.
when i try to add aaloc.h file it turns into atlalloc.h.
there is no file as alloc.h.
#include <stdio.h>
#include <atlalloc.h>
struct node{
int data;
struct node *link;
};
void add(struct node *);
void main(){
struct node *start;
start=NULL;
add(start);
printf("done");
}
void add(struct node *temp){
printf("one more loop");
}
**pls help how to run this program**