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
How do you define structure?
What is the explanation for cyclic nature of data types in c?
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
#include
Which header file is essential for using strcmp function?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How pointers are declared?
What are the ways to a null pointer can use in c programming language?
Why c is called procedure oriented language?
What is void main () in c?
Explain the difference between null pointer and void pointer.
What is static function in c?
What is meant by type casting?
Is it possible to execute code even after the program exits the main() function?