what is a constant pointer in C


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are linked lists in c?

0 Answers  


What are derived data types in c?

0 Answers  


Explain what does a function declared as pascal do differently?

0 Answers  


Explain how do you list a file’s date and time?

0 Answers  


Explain how do you print only part of a string?

0 Answers  


c program to subtract between two numbers without using '-' sign and subtract function.

2 Answers  


What is the purpose of scanf() and printf() functions?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


Is file a keyword in c?

0 Answers  


what different between c and c++

1 Answers  


Tell me when is a void pointer used?

0 Answers  


What is the meaning of int *x[]();?

1 Answers  


Categories