Answer Posted / angel
Pointer is a variable.It may contains the memory address of
the another variable and is declared as the pointer.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Explain how can a program be made to print the name of a source file where an error occurs?
Why is c called c not d or e?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is volatile, register definition in C
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are local static variables? How can you use them?
Explain a file operation in C with an example.
What is the difference between functions abs() and fabs()?
How many types of arrays are there in c?
What does c in a circle mean?
What is wrong with this program statement?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Why c is called free form language?
What are the back slash character constants or escape sequence charactersavailable in c?