Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
biggest of two no's with out using if condition statement
How can I ensure that integer arithmetic doesnt overflow?
What is C++
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
When is the “void” keyword used in a function?
write a program which counts a product of array elements lower than 10.
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
What are c header files?
Do you know the use of fflush() function?
Why is C language being considered a middle level language?
What is the mean of this statement:: if(int i=0 * i=9)