A
Q. What does the following code do?
Code:
#include <stdio.h>
int main() {
char c = 'A';
printf("%d", c);
return 0;
}
int main() {
char c = 'A';
printf("%d", c);
return 0;
}
- Correct Answer - Option(B)
- Views: 14
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.