Write a program to print prime nums from 1-20 using c
programing?
Answer Posted / musa
#include <stdio.h>
main(){
printf("2 5 7 11 13 17 19");
}
| Is This Answer Correct ? | 10 Yes | 14 No |
Post New Answer View All Answers
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is the significance of scope resolution operator?
Is there any demerits of using pointer?
Write a program to implement queue.
Why does the call char scanf work?
What are the different categories of functions in c?
What is the process of writing the null pointer?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is c programing language?
Explain about C function prototype?
What is the use of getchar functions?
Explain the difference between call by value and call by reference in c language?
What is binary tree in c?
What is meant by recursion?
Write a program to swap two numbers without using third variable in c?