Quantcast
Channel: C Programming in VS 2019
Viewing all articles
Browse latest Browse all 4

C Programming in VS 2019

$
0
0

Hello, i wrote a C program in VS 2019 for printing ASCII values and their equivalent representation but in pop up window for values 1,2,3,4 it is showing rectangular shape instead of ASCII characters . Please see the attached picture. Code is like this

#include<stdio.h>
#include<conio.h>
int main()
{
int x=0;
while (x<=255)
{
printf("\t%c=%d",x,x);
x++;
}

_getch();
return 0;
}



Viewing all articles
Browse latest Browse all 4

Latest Images

Trending Articles





Latest Images