Check number is Odd or Even using command line

Write a program to check number is even or odd using command line argument

//definition of main in command-line arguments

int main(int argc, char *argv[])

{

  //some coding

  1. argc – It is known as argument count, it stores the count of the number of arguments.
  2. argv[] – Pointer, contains location of all the values(arguments).
  3. *argv[] – Array of values of all the arguments

Approach

C

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argcchar *argv[])
{
    if (argc != 2)
    {
        printf("Enter a number: ");
        return -1;
    }
    else
    {
        int num = atoi(argv[1]);
        if (num % 2 == 0)
        {
            printf("Number is even ");
        }
        else
        {
            printf("Number is odd ");
        }
    }
    return 0;
}
To Run a Program
  1. Go to the location/directory where your program is present.
  2. g++ proramName.c -o out
  3. ./out  24

Example:

Input: num = 24
Output: Number is even 


No comments:

Post a Comment