View Single Post
Light Poster
11Jun2012,15:17  
vivekgupta's Avatar
(1). #include<stdio.h>
int main()
{
printf("The single quote \' is this ");
}


(2). #include<stdio.h>
int main()
{
printf("The single quote ' is this ");
}

Questions

(a)same output so why we take \' as escape sequence . It does not do anything special??



(b) Why did these characters call "escape sequences" . ?
Help plzz