79280117

Date: 2024-12-14 05:31:19
Score: 1
Natty:
Report link
#include<stdio.h>
#incldue<stdlib.h>
struct node{
 int data;
 struct node*next;
};
int main()
{
  struct node*start=NULL;
  start=(struct node*)malloc(sizeof(struct node));
  start->data=10;
  start->next=NULL;
  return 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Khushi Devi