WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT
TECHNIQUE..
No Answer is Posted For this Question
Be the First to Post Answer
how to find the size of the data type like int,float without using the sizeof operator?
What is d scanf?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
What is extern storage class in c?
What is a null pointer in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Explain how can type-insensitive macros be created?
how to print "hai" in c?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What is the general form of a C program?
Why does this code crash?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.