12 14 C CTRL-L
Now the 12 is Decimal, 14 is Octall and the C is hex. How would the syntax look if I wanted to print this control character to screen to refresh the screen?
Here is what I have now:
printf(iscntrl(12));
Of course I get the following error with this syntax:
[root@Hackbox root]# make
g++ -g -o udp_send udp_send.c -lnsl
udp_send.c: In function `int main(int, char**)':
udp_send.c:69: invalid conversion from `int' to `const char*'
make: *** [udp_send] Error 1
Any ideas?


