what is volatile in c language?
Answer Posted / sudeep
It is nothing but telling to compiler that this variable
will change its value at anytime by means of anything and
compiler should not make any assumption about this variable.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Compare interpreters and compilers.
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is #define size in c?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is extern c used for?
What is data structure in c programming?
What will the preprocessor do for a program?
praagnovation
What is identifiers in c with examples?
Can we declare variable anywhere in c?
How to create struct variables?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Explain high-order and low-order bytes.
Write a function that will take in a phone number and output all possible alphabetical combinations
What are preprocessor directives in c?