code_snippets/c_projects/test_char_pointers/another_main.c

14 lines
226 B
C
Raw Normal View History

2024-10-08 01:16:21 +00:00
#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;
}