Showing posts with label array as pointer. Show all posts
Pointer vs Array

Pointer vs Array

Let you teach what is difference between pointer and array. Firs of all we should know the definition of pointer and array. Pointer: Pointe...
Read More
45

45

int main() { int a[]={40,41,50}; char str="shark srini"; int *ptr; *(a+1)=*(a+2)-45; ptr=a; printf("%s",&1[a][str]);...
Read More