Answer Posted / prameela rani
it is a pointer which points nothing.
it does not point any thing
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How does struct work in c?
What is a method in c?
How can I automatically locate a programs configuration files in the same directory as the executable?
Why c is called procedure oriented language?
Are comments included during the compilation stage and placed in the EXE file as well?
Explain a pre-processor and its advantages.
Describe the order of precedence with regards to operators in C.
Can we assign string to char pointer?
Can a local variable be volatile in c?
how to find binary of number?
Is main is a keyword in c?
What are the application of c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Explain what is the advantage of a random access file?
Write a program to swap two numbers without using a temporary variable?