I have seen the following program.
It's output is 5.
Please, someone explain why it is giving o/p 5.
Thank You.
Code:
#include<stdio.h>
int main()
{
char str[]="S\065AB";
printf("\n%d", sizeof(str));
return(0);
}
Please, someone explain why it is giving o/p 5.
Thank You.
Comment