What are dangling pointers?
Answer / nashiinformaticssolutions
Pointers pointing to memory that has been deallocated.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is array of pointers to string?
What is main void in c?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
Do you know the purpose of 'register' keyword?
Where local variables are stored in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
How do you initialize pointer variables?