1,176 views
2 votes
2 votes
Very basic C language doubt regarding \5
#include <stdio.h>
int main()
{
   printf("\5");
   return 0;
}

why the output of this code is ♣??

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
1
paarthsinghrathore asked Aug 21, 2023
240 views
When to convert ‘K’ or ‘M’ as power of 2 vs power of 10?Ex – 4K as $^{2^{12}}$ or 4*10^3?
0 votes
0 votes
2 answers
3
Hira Thakur asked Aug 18, 2017
288 views
how to deal with multiple printf statement in C language. how this code will work??void main(){clrscr();printf("%d%d%d", printf("GATE"),printf("2018"),printf("IITian"));}...
0 votes
0 votes
2 answers
4
anonymous asked May 14, 2018
491 views
What changes must be done for printing value 5. #include <stdio.h int main() { int var; /*Suppose address of var is 2000 */ void *ptr = &var; *ptr = 5; printf("var=%d and...