include <stdio.h>
include <stdlib.h>
#include <stdio.h>
#inculde <stdlib.h>

typedef struct elementi{
int data;
typedef struct *next;
}lista;

lista*putel(lista *l,int x){
lista*tmp;
tmp=new elementi;  //How can i put a new element?
tmp->data=x;
tmp->next=l;
tmp=l;
}
.
.
.
(continue)

new is a c++, not a C. In C call malloc() or callc() to allocate memory, and free() to release it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.