Answer Posted / rajgopal
pointer is variable which store the addrss of another variable
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is getch() function?
Are the outer parentheses in return statements really optional?
If the size of int data type is two bytes, what is the range of signed int data type?
How to implement a packet in C
Write program to remove duplicate in an array?
List the difference between a While & Do While loops?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Explain what are reserved words?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is the difference between printf and scanf in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain how can you tell whether two strings are the same?