Answer Posted / sandeep
By adding volatile qualifier
eg:volatile int a;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is C language ?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
can we change the default calling convention in c if yes than how.........?
What are register variables in c?
What are the modifiers available in c programming language?
Can a variable be both static and volatile in c?
Explain why can’t constant values be used to define an array’s initial size?
Why structure is used in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What does the message "automatic aggregate intialization is an ansi feature" mean?
Differentiate between null and void pointers.
write a program to concatenation the string using switch case?
What do you mean by invalid pointer arithmetic?
Can you subtract pointers from each other? Why would you?