Answer Posted / likhit gatagat
pointers in C are variables storing address of some another
memory variable/location to which they are pointing
e.g: int *p;
int s;
p=&s;
now if s has memory address 101 then p will be storing
this address i.e pointing to variable s
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
Who developed c language?
What are inbuilt functions in c?
What is the best way to comment out a section of code that contains comments?
What are the types of macro formats?
Explain how many levels deep can include files be nested?
The statement, int(*x[]) () what does in indicate?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How can this be legal c?
What happens if you free a pointer twice?
Why & is used in scanf in c?
how to count no of words,characters,lines in a paragraph.
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
Where is c used?
What is I ++ in c programming?