what is difference between declaring the pointer as int and
char in c language?
Answer Posted / karan
means of integer pointer a pointer variable which contains
a address of an integer value...means the address in the
pionter variable points to a integer type value....
And the means of chracter pointer, pionter variable is
contain a integer address of a character type value..
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What is c variable?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Place the #include statement must be written in the program?
what is the diffrenet bettwen HTTP and internet protocol
How can I read in an object file and jump to locations in it?
Can we assign string to char pointer?
What is the function of volatile in c language?
Explain how can I avoid the abort, retry, fail messages?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
what are the advantages of a macro over a function?
Can you think of a logic behind the game minesweeper.
Why is c faster?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What are the key features in c programming language?
Why should I prototype a function?