|
Related Questions |
View Answer |
 |
What is the meaning of scope of a variable?
|
View Answer |
 |
Write a c program to modify the constant variable in c?
You can modify constant variable with the help of pointers. For example:
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); } |
View Answer |
 |
What is the meaning of prototype of a function ?
|
View Answer |
 |
Why we use static variable in c? Tell me all properties of static variables which you know?
|
View Answer |
 |
Why we use do-while loop in c? |
View Answer |
 |
What is and why array in c ?
|
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 |