Post New Answer View All Answers
What is the advantage of using #define to declare a constant?
Do you know null pointer?
What is define c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Is main is user defined function?
What is property type c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Give differences between - new and malloc() , delete and free() ?
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 a lvalue
Write a Program to find whether the given number or string is palindrome.
Can you tell me how to check whether a linked list is circular?
How to establish connection with oracle database software from c language?
What is a memory leak? How to avoid it?
Why isn't any of this standardized in c? Any real program has to do some of these things.