write a program for size of a data type without using
sizeof() operator?
Answer Posted / puneet
PLS TYPE ANSWER
| Is This Answer Correct ? | 16 Yes | 12 No |
Post New Answer View All Answers
Are local variables initialized to zero by default in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What are the different types of data structures in c?
Do you know the difference between exit() and _exit() function in c?
Write a program to generate the Fibinocci Series
What is the use of putchar function?
When should the const modifier be used?
Where in memory are my variables stored?
What is meant by operator precedence?
Is c weakly typed?
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.
What is string length in c?
What is #include stdio h?
Why can arithmetic operations not be performed on void pointers?
Are pointers integers in c?