Why is %d used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is calloc malloc realloc in c?
write a program in c language to print your bio-data on the screen by using functions.
who did come first hen or agg
which do you prefer C or Pascal?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Write a program to reverse a linked list in c.
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
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
What is a stream?
Write a program to print factorial of given number using recursion?