#include stdio.h #include stdlib.h struct node { int data; struct node *left,*right; }; void create(struct node **p,int d) { if(*p==NULL) { *p=(struct node *)malloc(sizeof(struct node));
(Read More)…
#include stdio.h int main() { int year; printf(“Enter year\t”); scanf(“%d”,&year); if (((year%4==0) && (year%100!=0))||(year%400==0)) printf(“Leap Year \n”); else printf(“Not a Leap Year \n”); }





