Answer Posted / sagar hande
Pointer is variable that contains memory location of
another variable
| Is This Answer Correct ? | 33 Yes | 0 No |
Post New Answer View All Answers
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
write a program to generate address labels using structures?
The file stdio.h, what does it contain?
Explain what is dynamic data structure?
Explain what are run-time errors?
What is memcpy() function?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is meant by errors and debugging?
what are the facialities provided by you after the selection of the student.
What is use of integral promotions in c?
Explain the use of keyword 'register' with respect to variables.
Explain what will the preprocessor do for a program?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Is it valid to address one element beyond the end of an array?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol