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 |
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is external variable in c?
write a program to print largest number of each row of a 2D array
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Why static is used in c?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
Why doesnt the call scanf work?
What is adt in c programming?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
Why can’t we compare structures?
How can you restore a redirected standard stream?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }