Are pointers integer?



Are pointers integer?..

Answer / Tauqeer Ahmad

"No, pointers are not integers. While pointers do contain a memory address, which is an integer value, the pointer itself is not considered an integer data type in C."

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is the difference between ++a and a++?

1 Answers  


What are the ways to a null pointer can use in c programming language?

1 Answers  


sum of two integers values only other then integer it should print invalid input.

1 Answers  


How can I sort more data than will fit in memory?

1 Answers  


What is hashing in c language?

1 Answers  


What is the basic structure of c?

1 Answers  


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?

1 Answers   Groupon,


Why malloc is faster than calloc?

1 Answers  


What is string constants?

1 Answers  


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

1 Answers  


How many types of sorting are there in c?

1 Answers  


Categories