About Me

My photo
Raipur, Chhattisgarh, India
Hi , I am Amit Thakur. I have worked as a QA Engineer for two years and as a Java Developer for one year in NIHILENT TECHNOLOGIES PVT. LTD., Pune.Currently I am working as DEAN (Research & Development) in Bhilai Institute of Technology, Raipur.

Tuesday, September 3, 2013

C Program to Add two numbers using Command Line Arguments Parameters

#include<stdio.h>

void main(int argc , char * argv[])
{
    int i,sum=0;

    if(argc!=3)
      {
      printf("you have forgot to type numbers.");
      exit(1);
      }

    printf("The sum is : ");

    for(i=1;i<argc;i++)
        sum = sum + atoi(argv[i]);

    printf("%d",sum);

}
Output :
The sum is : 30

Steps to be followed to execute program using Command Line Argument inside Borland C/C++ Compiler :

  • Step 1 : Write a Program
  • Step 2 : Open Command Prompt inside Borland C/C++.
  • Step 3 : Click on DOS Shell.
  • Step 4 : Inside Command Prompt type this command.
C:TCBIN>add 10 20
  • Step 5 : Hit Enter , You will get following Output.
C:TCBIN>add 10 20
The sum is : 30
C:TCBIN>
  • Step 6 : Type “exit” command to return to Turbo C/C++ Screen

No comments: