+ 1
Please explain this program output?
#include <stdio.h> int main() { char*str="ââŹđ12345"; printf("%d",*str ); return 0; } //output -30
1 Answer
+ 6
Print the integer value of ther first character in str.
#include <stdio.h> int main() { char*str="ââŹđ12345"; printf("%d",*str ); return 0; } //output -30