Write a program to display all the prime nos from 1 to
1000000, your code should not take time more than a minute
to display all the nos.
No Answer is Posted For this Question
Be the First to Post Answer
How macro execution is faster than function ?
What is static and auto variables in c?
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
What are the basic data types associated with c?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
What is volatile
Why cant I open a file by its explicit path?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
What does int main () mean?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?