TO FIND THE ASCII VALUE PROGRAM
#include <stdio.h>
int main()
{
char c;
scanf("%c",&c);
printf("This is the ASCCI value %c=%d",c,c);
return 0;
}
Question 1 Correct Mark 2.00 out of 2.00 Flag question Question text A company has had several incidents involving users downloading unauth...
No comments:
Post a Comment