Question:What will be output if you will compile and execute the following c code?
#include<stdio.h>
int main(){
char *url="c:\tc\bin\rw.c";
printf("%s",url);
return 0;
}
A c:\tc\bin\rw.c
B c:/tc/bin/rw.c
C c: c inw.c
D c:cinw.c
E w.c in
+ AnswerE
+ Report