Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- struct node{
- long int data[50];
- struct node* next;
- };
- int main(){
- while(1==1){
- struct node* head = (struct node*)malloc(sizeof(struct node));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement