If 4 digits number is input through the keyboard, Write a
program to calculate sum of its 1st & 4th digit.
Answer Posted / sourav sinha
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int num,n1,n2,sum;
clrscr();
printf("Enter 4 digit number:");
scanf("%d",&num);
n1=num/1000;
n2=num%10;
sum=n1+n2;
printf("Sum of 1st & 4th digit number is=%d",sum);
getch();
}
enjoy!!!!!!!!!!!!
any program just mail me:
ssmartinp@gmail.com
| Is This Answer Correct ? | 57 Yes | 15 No |
Post New Answer View All Answers
What is the use of function overloading in C?
Difference between MAC vs. IP Addressing
What is variable and explain rules to declare variable in c?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
can anyone please tell about the nested interrupts?
Difference between pass by reference and pass by value?
Can we assign string to char pointer?
Explain the process of converting a Tree into a Binary Tree.
What is string in c language?
what is the significance of static storage class specifier?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What are the application of void data type in c?
What is the difference between malloc() and calloc()?
How can I write a function analogous to scanf?
What is define directive?