The difference between printf and fprintf is ?
No Answer is Posted For this Question
Be the First to Post Answer
What is n in c?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
Is c language still used?
what are the interview question's in the language c
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
which is faster execution: loops or recursion?
How does the C program handle segmentation faults?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
How does sizeof know array size?