What are dangling pointers?
Answer / nashiinformaticssolutions
Pointers pointing to memory that has been deallocated.
Is This Answer Correct ? | 0 Yes | 0 No |
A program to allow an input operand and operator from the operator and read on the display and output operand.
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
what are the general concepts of c and c++
what is the difference between char * const and const char *?
How to implement a packet in C
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
what is event driven software and what is procedural driven software?
write a c program to print "Welcome" without using semicolon in the whole program ??
pgm to find middle element of linklist(in efficent manner)
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
sum of two integers values only other then integer it should print invalid input.
Please write the area of a RIGHT ANGLED TRIANGLE.