i want to asked a question about c program the question is:
create a c program that displays all prime numbers less than
500? using looping statement
Answer Posted / vadivelt
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do I send escape sequences to control a terminal or other device?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
number of times a digit is present in a number
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How to create struct variables?
How do you list a file’s date and time?
What is the significance of c program algorithms?
explain what is a newline escape sequence?
Is it possible to have a function as a parameter in another function?
Can we assign string to char pointer?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
When would you use a pointer to a function?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is use of #include in c?