what is disadvantage of pointer in C

Answer Posted / yogesh rajoriya

normally pointer workes with address and if we can find the
address of any locatiion of hardware any one can easly
currpt the data that is the bigest problem with pointer but
still the os is written in c language that is not understand
by me

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to reverse a string.

642


Explain what is the difference between a string and an array?

640


What is a function simple definition?

620


Can static variables be declared in a header file?

618


Why does notstrcat(string, "!");Work?

643






Is there a way to compare two structure variables?

617


What is console in c language?

611


What is difference between static and global variable in c?

539


How to set file pointer to beginning c?

670


How do I determine whether a character is numeric, alphabetic, and so on?

622


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

631


code for find determinent of amatrix

1519


any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above

645


What is an example of structure?

588


What is keyword with example?

642