IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Answer Posted / mathan
no
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Is null a keyword in c?
Differentiate between full, complete & perfect binary trees.
What is difference between constant pointer and constant variable?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is structure data type in c?
Why do we use null pointer?
Tell me with an example the self-referential structure?
Disadvantages of C language.
what is event driven software and what is procedural driven software?
What is the 'named constructor idiom'?
What is ## preprocessor operator in c?
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 to set file pointer to beginning c?
What are the advantages of using new operator as compared to the function malloc ()?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?