wt is diference between int and int pointer as same as
float and float pointer and char and char pointer
Answer Posted / vilas soni++
"int" can give it's value, and
we can put any integer value in it directly.
while "pointer" of an integer can give value of an
integer what's address it contain, and
we can not put any integer value in it directly like :
int *p;
p = 65201;
it will give error.......
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is difference between function overloading and operator overloading?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
What are the two types of structure?
What is c preprocessor mean?
I need a sort of an approximate strcmp routine?
How a string is stored in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is data types?
How do you use a 'Local Block'?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Describe the modifier in c?
Do you know what are bitwise shift operators in c programming?
What is selection sort in c?
How to define structures? ·