What is volatile in c language?
Answers were Sorted based on User's Feedback
Answer / venkata mahesh
compiler should not make any assumption about the variable
which declared as volatile.
| Is This Answer Correct ? | 8 Yes | 0 No |
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
how to build a exercise findig min number of e heap with list imlemented?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Whats s or c mean?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
What is c language used for?
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
what is the code to display color fonts in the output?
What is the difference between static and global variables?
What is atoi and atof in c?
please explain every phase in the "SDLC" in the dotnet.
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?