Respuesta :
Answer:
Explanation:
Note: Could you plz go through this code and let me know if u need any changes in this.Thank You
=================================
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
int main() {
//Declaring constants
const int MIN=1;
const int MAX=40;
//Declaring variables
int num,i;
printf("Enter a non-zero positive number less than 40: ");
/* This while loop continues to execute
* until the user enters a number <=0
*/
while(1)
{
scanf("%d",&num);
if(num<=0)
{
break;
}
else if(num>40)
{
printf("The number entered was greater than %d.\n",MAX);
printf("Please re-enter: ");
}
else
{
for(i=0;i<num;i++)
{
printf("*");
}
printf("%d\n",num);
printf("Enter another non-zero positive number less than 40: ");
}
}
printf("bye...");
return 0;
}
================================
output:
Enter a non-zero positive number less than 40:5
*****5
Enter another non zero positive number less than 40: 48
The number entered was greater than 40.
please Re-enter: 8
********8
Enter another non zero positive number less than 40: 1
bye...
---------------------------------------------
Process exited after 15.48 seconds with return value 0
Press any key to continue.......