What are dangling pointers?
Answer / nashiinformaticssolutions
Pointers pointing to memory that has been deallocated.
| Is This Answer Correct ? | 0 Yes | 0 No |
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
what is the most appropriate way to write a multi-statement macro?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Give basis knowledge of web designing ...
what is the difference between structural,object based,object orientd programming languages?
Can the size of an array be declared at runtime?
How to write the code of the program to swap two numbers with in one statement?
Write a program using bitwise operators to invert even bits of a given number.
Write a program to generate the Fibinocci Series