C Program to Add two numbers using Command Line Arguments Parameters | C Program to add number using Command line Arguments Parameters | Command Line Arguments in C Language | Passing parameters by Command Line Arguments in C language
#include
void main(int argc , char * argv[])
{
int i,sum=0;
if(argc!=3)
{
printf("Oops....!! \n you have forgot to type numbers. \n");
exit(1);
}
printf("The sum is : ");
for(i=1;i<argc; i++)
sum = sum + atoi(argv[i]);
printf("%d",sum);
}
How Run Program?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:\TC\BIN>add 10 20
Step 5 : Hit Enter , You will get following Output.
C:\TC\BIN>add 10 20
The sum is : 30
C:\TC\BIN>
Related Links :
History Of C..
In the beginning was Charles Babbage and his Analytical Engine, a machine
he built in 1822 that could be programmed to carry out different computations.
Move forward more than 100 years, where the U.S. government in
1942 used concepts from Babbage’s engine to create the ENIAC, the first
modern computer.
Meanwhile, over at the AT&T Bell Labs, in 1972 Dennis Ritchie was working
with two languages: B (for Bell) and BCPL (Basic Combined Programming
Language). Inspired by Pascal, Mr. Ritchie developed the C programming
language.
My 1st Program...
#include
#include
void main ()
{
clrscr ();
printf ("\n\n\n\n");
printf ("\t\t\t*******Pankaj *******\n");
printf ("\t\t\t********************************\n");
printf ("\t\t\t\"Life is Good...\"\n");
printf ("\t\t\t********************************");
getch ();
}
Next Step...
#include
#include
void main ()
{
clrscr ();
printf ("\n\n\n\n\n\n\n\n");
printf ("\t\t\t --------------------------- \n\n");
printf ("\t\t\t | IGCT, Info Computers, INDIA | \n\n");
printf ("\t\t\t --------------------------- ");
getch ();
}
No comments:
Post a Comment