✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <stdio.h>int main() { int num; do { printf("Insere um numero positivo: "); scanf("%d", &num); } while ( ... ); printf("Numero inserido é valido: %d\n", num); return 0;}