Answer Posted / mani
but how
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
When should a far pointer be used?
What is pointers in c with example?
Write a program of prime number using recursion.
Why n++ execute faster than n+1 ?
What are the different types of control structures in programming?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
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.
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Explain what are the advantages and disadvantages of a heap?
What does the c preprocessor do?
What is the advantage of using #define to declare a constant?
What is boolean in c?
What is the difference between fread buffer() and fwrite buffer()?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How do you list files in a directory?