When should volatile modifier be used?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is called top down?
Differentiate b/w Modify and Update commands giving example.
Where define directive used?
main is a predefined or user define function if user defined why? if predefined whay?
Hai why 'c' is the middle language
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
what are bps & baud rates? differentiate these two?
What is the difference between array and linked list in c?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
How does pointer work in c?
what is ANSI and ISO
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }