यह प्रोग्राम बिना - का चिन्ह इस्तेमाल किए घटा सकता है। लेकिन इसमें एक जगह + का इस्तेमाल किया गया है। उम्मीद है कि आप इसमें थोड़ा सा आगे बढ़ के अपने मन जैसा बना सकते हैं…शायद आसान ही है
#include #include #include #include main() { int neg,res; char min[6]={NULL},num1[5],num2[5]; clrscr(); min[0]=45; printf("\n Enter the first number:"); scanf("%s",&num1); printf("Enter the second number:"); scanf("%s",&num2); strcat(min,num2); neg=atoi(min); res=atoi(num1)+neg; printf("\n The result is %d.",res); getch(); }
मेरा खयाल है कि मैंने इसे बनाया था, आपको दिखाया भी होगा…
ReplyDeletenahi
ReplyDeleteतब ठीक है। मेरे पास है इसके लिए प्रोग्राम…देखता हूँ…शायद आपके ही कहने पर बनाया था…
ReplyDeleteयह प्रोग्राम बिना - का चिन्ह इस्तेमाल किए घटा सकता है। लेकिन इसमें एक जगह + का इस्तेमाल किया गया है। उम्मीद है कि आप इसमें थोड़ा सा आगे बढ़ के अपने मन जैसा बना सकते हैं…शायद आसान ही है
ReplyDelete#include
#include
#include
#include
main()
{
int neg,res;
char min[6]={NULL},num1[5],num2[5];
clrscr();
min[0]=45;
printf("\n Enter the first number:");
scanf("%s",&num1);
printf("Enter the second number:");
scanf("%s",&num2);
strcat(min,num2);
neg=atoi(min);
res=atoi(num1)+neg;
printf("\n The result is %d.",res);
getch();
}
but you are using + operator in the line
ReplyDeleteres=atoi(num1)+neg;