#include<stdio.h>
int main()
{
int a = 100;
printf("%0 %x", a);
}
Answers
Answered by
0
Answer:
/tmp/Y959ZK5HUw.o
%x
Explanation:
\0 is zero character. In C it is mostly used to indicate the termination of a character string. Of course it is a regular character and may be used as such but this is rarely the case. The simpler versions of the built-in string manipulation functions in C require that your string is null-terminated(or ends with \0 )
Answered by
0
Answer:
the answer will be %x
%0 will cancel out the %a but if we pass %x only it will give an error.
Similar questions