write a program for input is 56 output will be 5+6=10?
Answer Posted / mani kandan.s
#include<stdio.h>
#include<conio.h>
void main()
{
int n,a,b;
clrscr();
printf("Enter the n value");
scanf("%d",&n);
a=n%10;
b=n/10;
printf("Result is=%d",a+b);
getch();
}
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
Why it is a preferable option in parallelextender development ?
If memory is allocated to a class,when object of the class is created then how do we use the abstract class methods.coz v cant create obj of abstract class, only reference is created,when the abstract class data and members got the space in memory??
what is static identifier in c language?
i m doing my 3rd yr with only 6 month left to complete it..within this 6 months which is the best nd useful oracle certification program should i do??pls help me out!!
what's the difference between windows serevr 2003 or windows XP.
what is 16 bit processor and what is 32 bit processor?how can we differentiate and identify or find that ?How they access data?
Differences between Java and C++? which is faster?
Tell me about a time when you had too many things to do and you were required to prioritize your tasks
how to use photoshop and some related websites?
what will happend if i fire this command in linux " rm -r / "
what are the advantages and disadvantages of extended vlan (range 1006-4094)?
i cannot go to my computer to set up why?
what is 16kHz use in GSM
2. A product selected for testing is equally likely to have been produced by one the 6 machines/processes. (i) Determine sample space āSā (ii) What is the probability that the product is from machine 1? (iii) What is the probability that the product is from machine 2 or machine 4? (iv) What is the probability that the product is from both machine 5 and machine 3? (v) What is the probability that the product is not from machine 6? (vi) What is the probability that the product is not from either machine 6 or machine 1?
write a program for reverse a given string?