Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
vasureddym said:has anyboby used VOLATILE keyword!
Added after 38 seconds:
hi!
has anyboby used VOLATILE keyword!
saturn said:I read a lot of text saying "PREPROCESSOR", but what is the meaning of it? Could some explain please?
I read a lot of text saying "PREPROCESSOR", but what is the meaning of it? Could some explain please?
C-Man said:vasureddym said:has anyboby used VOLATILE keyword!
Added after 38 seconds:
hi!
has anyboby used VOLATILE keyword!
Sure volatile means that a variable can be change by an external event. The optimizer can not assume that a variable is unchanged during access.
Most of the time volatile is used when a variable is changed in a function and during interrupt.
Also look here:
h**p://&highlight=
best regards
x = 10 * ((10 + 20) / (100 - 40));
/* some statements not modifying x */
x = 20;
/* some more statements not modifying x */
printf("\n%d", x);