write a program to display all prime numbers
No Answer is Posted For this Question
Be the First to Post Answer
What is a stream?
Write the Program to reverse a string using pointers.
Why is the code below functioning. According to me it MUST NOT.
What is the need of structure in c?
What is function prototype in c language?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is difference between array and pointer in c?
How will you allocate memory to a double pointer ?
What is the difference b/w main() in C language and main() in C++.
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
When should the const modifier be used?
How do you prevent buffer overflows in C?