Answer Posted / braja28
that is one type of temporary storage
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
State the difference between x3 and x[3].
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Explain what is the difference between null and nul?
Explain the difference between the local variable and global variable in c?
What is function and its example?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
How many bytes are occupied by near, far and huge pointers (dos)?
What does 2n 4c mean?
How can I make it pause before closing the program output window?
What is a program flowchart?
How do I determine whether a character is numeric, alphabetic, and so on?
How do I read the arrow keys? What about function keys?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
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.