write a C and C++ programme to implement the
A,bubble sort
B,quick sort
C,insertion sort
D,sequential search
E,binary search
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What’s the special use of UNIONS?
What does do in c?
Do you know null pointer?
a simple c program using 'for' loop to display the output 5 4 3 2 1
how could explain about job profile
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.?
how to use virual function in real time example
What is the difference between fread buffer() and fwrite buffer()?
Why main is used in c?
how to add two numbers without using arithmetic operators?
write a c program in such a way that if we enter the today date the output should be next day's date.