comment in c program

comment in c program

comment in c program   Example – comments in a program #include <stdio.h>   int main()   {      // Single line comment in a C program      printf(“Writing comments is very useful.\n”);      /*       * Multi-line comment syntax       * Comments help us to understand program later … Read more

C switch case program to read weekday number and print weekday name

C Programming Tutorial

C switch case program to read weekday number and print weekday name This program will read weekday number (0-6) and print weekday name (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday)   Weekday Number Weekday Name 0 Sunday 1 Monday 2 Tuesday 3 Wednesday 4 Thursday 5 Friday 6 Saturday Program Example: #include <stdio.h> int main() … Read more