What is the use of keyword VOLATILE in C?
Answer / pawan
It prevent the (pseudo)compiler from applying any
optimizations on the code
| Is This Answer Correct ? | 2 Yes | 2 No |
Define function pointers?
Is it better to use a macro or a function?
What are static functions?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
discuss the steps needed to get a program from source code to executable in a system?
what is the format specifier for printing a pointer value?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
in malloc and calloc which one is fast and why?
consagous technology placement paper
Is malloc memset faster than calloc?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Why double pointer is used in c?