24 Computer -- Programming Concepts and Logics

WAP to input any number and display its factor.

WAP to input any number and display its factor.

The following is a C program to input any number and display its factor.:


#include <stdio.h> int main() {     int num, i;     printf("Enter a positive integer: ");     scanf("%d", &num);     printf("Factors of %d are: ", num);     for (i = 1; i <= num; ++i) {         if (num % i == 0) {             printf("%d ", i);         }     }     return 0; }

More questions on Programming Concepts and Logics

Close Open App