Write a C program to check a year is leap year or not.
#include <stdio.h> #include <conio.h> main() { int y; printf("\n enter any year"); scanf("%d", &y); if ((y % 4 == 0) && ((y % 100 != 0) || (y % 400 == 0))) printf("\n the year is LEAPYEAR"); else printf("\n the year is NOT LEAPYEAR"); getch(); }
Output:
Write a C-Program That Uses Functions To Insert A Sub-String In To A Given Main String From A Given Position.
Briefly differentiate between CDMA and GSM technologies.
Describe structured analysis and structured design.
What do you mean by software crisis & its solution.