Answer Posted / agung bakhtiar
A volatile variable is the one whose values may be changed at any time by some external sources
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
Is the exit() function same as the return statement? Explain.
Who developed c language?
What is the auto keyword good for?
Explain about the functions strcat() and strcmp()?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is a pointer in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Explain how do you print an address?
Who invented b language?
Why is structure padding done in c?
What is pointer in c?
What is selection sort in c?
What are local static variables?
How many keywords are there in c?