Ow 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
coding for Fibonacci.?
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
write a program to gat the digt sum of a number (et. 15= >1+5=6)
Is main() function predfined or userdefined?
where does it flourished?
write a prgram of swapping with 2 valiables
What are the different types of linkage exist in c?
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..
Why do we use & in c?
Why is c so popular?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.