|
Related Questions |
View Answer |
 |
Do you know memory representation of int a = 7; ?
|
View Answer |
 |
What are merits and demerits of array in c?
|
View Answer |
 |
What is wild pointer in c ?
|
View Answer |
 |
What will be output of following c program?
int *call(); void main(){ int *ptr; ptr=call(); clrscr(); printf("%d",*ptr);
} int * call(){ int x=25; ++x; return &x; }
|
View Answer |
 |
What is dangling pointer in c? |
View Answer |
 |
Swap two variables without using third variable.
|
View Answer |
 |
Write a c program without using any semicolon which output will : Hello word.
|
View Answer |
 |
What is the purpose of the Literature Review?
|
View Answer |
 |
How are pointer variables initialized?
|
View Answer |
 |
When should a far pointer be used?
|
View Answer |
 |
What is static memory allocation and dynamic memory allocation?
|
View Answer |
 |
What is the difference between text and binary modes?
|
View Answer |
 |
What is a null pointer?
|
View Answer |
 |
When does the compiler not implicitly generate the address of the first element of an array?
|
View Answer |
 |
Can include files be nested?
|
View Answer |
 |
Can a variable be both const and volatile?
|
View Answer |
 |
Can static variables be declared in a header file?
|
View Answer |
 |
Can static variables be declared in a header file?
|
View Answer |
 |
How can you determine the size of an allocated portion of memory?
|
View Answer |
 |
What is hashing?
|
View Answer |