Question: What does this code do ? #include int main(void) { unsigned int x; unsigned int y; // prompt user for input printf(%s, Enter two unsigned

What does this code do ?

#include

int main(void)

{

unsigned int x;

unsigned int y;

// prompt user for input

printf("%s", "Enter two unsigned integers in the range 1-20: ");

scanf("%u%u", &x, &y); // read values for x and y

for (unsigned int i = 1; i <= y; ++i) { // count from 1 to y

for (unsigned int j = 1; j <= x; ++j) { // count from 1 to x

printf("%s", "@");

}

puts(""); // begin new line

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!