Answer Posted / sarmatha tk
LAST IN FIRST OUT
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can I open files mentioned on the command line, and parse option flags?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
How can I avoid the abort, retry, fail messages?
Explain the difference between call by value and call by reference in c language?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Who is the main contributor in designing the c language after dennis ritchie?
What does the file stdio.h contain?
How do you use a pointer to a function?
please send me the code for multiplying sparse matrix using c
In c programming language, how many parameters can be passed to a function ?
Is there any data type in c with variable size?
What does %d do in c?
What is pointer to pointer in c with example?
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.