Answer Posted / avinash
#IS PREPOSSESSOR.
| Is This Answer Correct ? | 31 Yes | 7 No |
Post New Answer View All Answers
Who developed c language and when?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Who is the main contributor in designing the c language after dennis ritchie?
How can you call a function, given its name as a string?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is difference between class and structure?
Do you know the difference between exit() and _exit() function in c?
The statement, int(*x[]) () what does in indicate?
In c language can we compile a program without main() function?
What is the difference between local variable and global variable in c?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is difference between && and & in c?
Why doesnt the call scanf work?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
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.