Answer Posted / joel
array the method of storing multiple data on the same drive
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Give the rules for variable declaration?
How can I call a function with an argument list built up at run time?
Explain the difference between malloc() and calloc() function?
What is function prototype?
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.
How can you access memory located at a certain address?
What are comments and how do you insert it in a C program?
How many main () function we can have in a project?
Why is this loop always executing once?
What is difference between array and structure in c?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How to explain the final year project as a fresher please answer with sample project
How we can insert comments in a c program?
What is call by value in c?