🔒 Closed How to put ascii code outer loop in c program

Status
Not open for further replies.

Phantom Rhythm

Honorary Poster
Di ko po alam paano maglagay ng ascii code kahit anong symbol for design sana, dun sa outer loop. salamat

#include <stdio.h>
int main()
{
int j, k, L;

printf("Enter number of rows: ");
scanf("%d", &L);

for(j=1; j<=L; j++)
{
for (k=1; k<=L; k++)
{
if(j==1 || j==L || k==1 || k==L)
{
printf("*");
}
else
{
printf(" ");
}
}
printf("\n");
}
return 0;
}
 
Solution
Example: ASCII value of integer 61 is character =

check mo naka highlight na yellow, sample conversion lang yan ng ascii number to character, ikaw na bahala kung saan mo ilalagay sa code mo..

1631728407579.png

1631728471140.png
Example: ASCII value of integer 61 is character =

check mo naka highlight na yellow, sample conversion lang yan ng ascii number to character, ikaw na bahala kung saan mo ilalagay sa code mo..

1631728407579.png

1631728471140.png
 
Solution
Status
Not open for further replies.

About this Thread

  • 2
    Replies
  • 536
    Views
  • 2
    Participants
Last reply from:
Phantom Rhythm

Trending Topics

Online now

Members online
1,162
Guests online
1,375
Total visitors
2,537

Forum statistics

Threads
2,290,984
Posts
29,067,949
Members
1,211,624
Latest member
huytb171
Back
Top