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 |
What is the difference between ++a and a++?
What are the ways to a null pointer can use in c programming language?
sum of two integers values only other then integer it should print invalid input.
How can I sort more data than will fit in memory?
What is hashing in c language?
What is the basic structure of c?
Can you think of a way when a program crashed before reaching main? If yes how?
#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?
Why malloc is faster than calloc?
What is string constants?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
How many types of sorting are there in c?