what is used instead of pointers in java than c?
What is sparse file?
Write a program to print fibonacci series without using recursion?
What are the types of pointers in c?
What is const and volatile in c?
What are the advantages and disadvantages of c language?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
i have a written test in tomorrow
Which function in C can be used to append a string to another string?
inline function is there in c language?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
What does typeof return in c?
Write a program to find the smallest and largest element in a given array in c language