79461605

Date: 2025-02-23 17:07:59
Score: 1
Natty:
Report link

include <stdio.h> #include <stdlib.h>

int main(int argc, char *argv[]) {

int num;
int smaller=0;

printf("Input integers: ");
scanf("%d", &num);

if (num<smaller) {
    printf("*** value %d is smaller than %d \n", num, smaller);
}
smaller=num;

return 0;

}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chandana. V Chandana. V