what is dangling pointer?
Answer / ninja
A pointer referring to an area of memory that has been
deallocated. Dereferencing such a pointer usually produces
garbage
| Is This Answer Correct ? | 18 Yes | 0 No |
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a program to reverse a given number in c?
Why do we need volatile in c?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is Your Name :)
How many bytes are occupied by near, far and huge pointers (dos)?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Explain what is meant by 'bit masking'?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
what is the mean of c languages.