Answer Posted / vijay r15
pointer denotes the address of a variable
*denotes its a ptr var
Ex
Int a; //ordin var
Int *p; //ptr var going to hold sum address
P=&a; //p holds the address of a
With thanks and regards,
Vijay r15
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the benefit of using #define to declare a constant?
What is the hardest programming language?
Is register a keyword in c?
What is a char c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain what are header files and explain what are its uses in c programming?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is the size of enum in bytes?
State the difference between realloc and free.
Can the sizeof operator be used to tell the size of an array passed to a function?
What does typeof return in c?
What is a 'null pointer assignment' error?
What is the difference between pure virtual function and virtual function?
Why doesnt that code work?
I need testPalindrome and removeSpace
#include