Introduction
Write C program to print gender (Male/Female) program according to given M/F
Write C program to print gender (Male/Female) program according to given M/F
#include <stdio.h>
int main()
{
char gender;
//Reading gender from user
printf("Enter gender (M/m or F/f): ");
scanf("%c",&gender);
switch(gender)
{
case 'M':
case 'm':
printf("Male");
break;
case 'F':
case 'f':
printf("Female");
break;
default:
printf("Unspecified Gender\n");
}
return 0;
}
Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …
C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …