input any 4 digit number and find the difference of all the
digits?
Answer Posted / jagan
i don't know pls give me response
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is meant by high-order and low-order bytes?
What does the error message "DGROUP exceeds 64K" mean?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Is it possible to have a function as a parameter in another function?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain how do you determine a file’s attributes?
Is multithreading possible in c?
What is a pointer in c plus plus?
Write a program of prime number using recursion.
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
Is Exception handling possible in c language?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
write a progrmm in c language take user interface generate table using for loop?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }