Answer Posted / n
read-only data which should not be optimized by compiler
because it might be modified by some ways unknown by
compiler.(ex: HW, or even by other thread if we have const
volatile int *p for example, where p is the address of some
variable which is not const).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Differentiate between calloc and malloc.
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Why can’t constant values be used to define an array’s initial size?
Tell us something about keyword 'auto'.
What is huge pointer in c?
What are local static variables?
What is meant by initialization and how we initialize a variable?
What is the difference between the expression “++a” and “a++”?
What are the advantages of using linked list for tree construction?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
When should a type cast not be used?
Explain what is the general form of a c program?
Explain how can you tell whether two strings are the same?
What are # preprocessor operator in c?