ASCII TABLE Get link Facebook X Pinterest Email Other Apps December 10, 2022 Here's the ASCII table that is followed for translation. Get link Facebook X Pinterest Email Other Apps Comments
PPS UNIT 2 Notes December 23, 2022 PPS Unit 2 Notes complete https://drive.google.com/file/d/1hM43NMdIz1sfFixcIlTzz0S1OXxL8CRm/view?usp=share_link Read more
C PROGRAM TO CHECK WHETHER A GIVEN YEAR IS A LEAP YEAR OR NOT January 01, 2023 #include<stdio.h> #include<conio.h> void main() { int year; printf( "Enter a year: " ); scanf( "%d" , &year); if (((year%4==0) && ((year%400==0) || (year%100!==0)) { printf( "%d is a leap year" , &year); } else { printf( "%d is not a leap year" , &year); } getch(); } Read more
Comments
Post a Comment