How many keywords are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of a array in c
What are the advantages of using linked list for tree construction?
what is reason of your company position's in india no. 1.
A stack can be implemented only using array?if not what is used?
what is link list?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Explain following declaration int *P(void); and int (*p)(char *a);
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
What is malloc calloc and realloc in c?
Explain how do you declare an array that will hold more than 64kb of data?
Explain how can I convert a number to a string?
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.