can we store values and addresses in the same array? explain
Answer Posted / sri
we can store values and address in same ,by using
datastructures concept
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
Are there namespaces in c?
When is a “switch” statement preferable over an “if” statement?
how to count no of words,characters,lines in a paragraph.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are c preprocessors?
Is c still relevant?
What does return 1 means 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.
Is c high or low level?
Can we replace the struct function in tree syntax with a union?
What is a pointer and how it is initialized?
What is default value of global variable in c?
What are structure members?
Hi can anyone tell what is a start up code?
Is malloc memset faster than calloc?