what is the difference between normal variables and pointer
variables..............
Answer Posted / fatima javaid
"Pointer variable holds memory address or physical address
of any variable value means it indirectly points any
vaiable,we can perform all operations +,*,-,and / through
it but normal variable directly points vaiable value"
Is This Answer Correct ? | 21 Yes | 5 No |
Post New Answer View All Answers
In a byte, what is the maximum decimal number that you can accommodate?
What is a volatile keyword in c?
regarding pointers concept
When was c language developed?
What are the different types of control structures?
What is a memory leak? How to avoid it?
When should you not use a type cast?
What is class and object in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
writ a program to compare using strcmp VIVA and viva with its output.
What oops means?
What is meant by operator precedence?
Can we access the array using a pointer in c language?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is the size of enum in c?