How can I insert or delete a line (or record) in the middle of a file?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of printf("%d", printf("Hello"));?
What are the differences between new and malloc in C?
p*=(++q)++*--p when p=q=1 while(q<=6)
What is the use of header?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
Explain what are multibyte characters?
How can I access an I o board directly?
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..
What is 2 d array in c?
what is difference between c and c++
What is string in c language?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??