what is disadvantage of pointer in C
Answer Posted / vipin gupta
We can access restricted memory area.
Ex. const. int x;
x=10;
int *p;
p=&x;
*p=20;
variable declared as Constant cann't be changed but by using pointers we can do so.
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is an expression?
Explain Basic concepts of C language?
Should I learn c before c++?
Why c is called object oriented language?
Why array is used in c?
What is a structure in c language. how to initialise a structure in c?
How old is c programming language?
Why does everyone say not to use scanf? What should I use instead?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Explain the Difference between the New and Malloc keyword.
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
How do we open a binary file in Read/Write mode in C?
What are the application of void data type in c?