14 lines
226 B
C
14 lines
226 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
char c = 248;
|
||
|
printf("Result when numeric character is passed: %c\n", c);
|
||
|
|
||
|
// c = b;
|
||
|
// printf("\nResult when non-numeric character is passed: %d", isdigit(c));
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|