The code gives different outputs in gcc and in turbo c compiler. Why there is difference between ascii values in these compiler.
#include <stdio.h> int main() { int n=1; while (n<70){ printf("Ascii value is %c\n",n); n++; } return 0; } The above program gives different outputs for values, say from 1 - 16 or something like that in gcc and in turbo c. Why is it so?
isprintfunction.