What's the difference between constant char *p and char * constant p?
No Answer is Posted For this Question
Be the First to Post Answer
What language is lisp written in?
which of 'arrays' or 'pointers' are faster?
#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?
What are the different file extensions involved when programming in C?
How can I read in an object file and jump to locations in it?
Can you explain the four storage classes in C?
can any one provide me the notes of data structure for ignou cs-62 paper
how to swap 4 number without using temporary number?
why Language C is plateform dependent
How do I create a directory? How do I remove a directory (and its contents)?
what is ram?
What is an identifier?