What is the output of this program?
main() { char c1='a' , c2='A'; int i=c2-c1; printf("%d", i); }
-32
0
Runtime error
32