Using pseudocode, develop the logic for a program that accepts a number as input and displays the number five times.
well here is the pseudo code for your program .
/*********************************/
/// here function accepts the value
void fun(int x){
// used a for loop to print x
for(int i=0;i<5;i++)
printf("%d\t",x);
}
//HERE ARE SOME OUTPUTS

Using pseudocode, develop the logic for a program that accepts a number as input and displays...