Q.

What will be output if you will compile and execute the following c code?
#include <stdio.h>
#include <string.h>
int main(){
char c='\08';
printf("%d",c); return 0;
}

A. 8
B. \8\
C. 9
D. compiler error
Answer» D. compiler error
1.7k
0
Do you find this helpful?
1

Discussion

No comments yet

Related MCQs