Tech Study

Write C program to print gender (Male/Female) program according to given M/F

Introduction

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;
}

Result

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

 

TaggedWrite C program to print gender (Male/Female) program according to given M/F

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more