what is volatile in c language?

Answer Posted / lingaraj a

The programmer just give inform to compiler the value of
variable will change at any time without any action being by
program. The change will be made by hardware or external source.

Is This Answer Correct ?    6 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which header file is used for clrscr?

583


What is the purpose of void pointer?

600


Define and explain about ! Operator?

616


What does a pointer variable always consist of?

666


What is c language and why we use it?

625






What is the purpose of the statement: strcat (S2, S1)?

642


in iso what are the common technological language?

1638


What is variable declaration and definition in c?

504


What is scanf_s in c?

634


What is volatile variable how do you declare it?

567


How many levels deep can include files be nested?

653


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

1579


What is "Duff's Device"?

703


What does s c mean in text?

616


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

766