what is difference b/w extern & volatile variable??

Answer Posted / sathya

extern keyword is used to strike the global declaration.
but volatile its indirectly change the values in externally

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is chain pointer in c?

604


What are the differences between Structures and Arrays?

612


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.

1066


What are identifiers c?

566


What is output redirection?

695






Can stdout be forced to print somewhere other than the screen?

627


What are the standard predefined macros?

634


What is getch() function?

650


Do you know what are the properties of union in c?

586


How is = symbol different from == symbol in c programming?

614


What is meant by type casting?

629


Can we change the value of static variable in c?

565


What is the general form of function in c?

610


What is s in c?

618


What is || operator and how does it function in a program?

632