what is disadvantage of pointer in C
Answer Posted / adesh
as per Security point of view pointer is not safe. A lot of
threads are exist like buffer overflow problems.
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
the question is that what you have been doing all these periods (one year gap)
Why we use stdio h in c?
What is the use of f in c?
Explain what are the __date__ and __time__ preprocessor commands?
What functions are used for dynamic memory allocation in c language?
What is gets() function?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Can a function argument have default value?
What is mean by data types in c?
Is a house a shell structure?
What is FIFO?
Write a program to check armstrong number in c?
How can I avoid the abort, retry, fail messages?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above