@diwanananda-lUNv25
•
Oct 13, 2024
Oct 13, 2024
1.5K
a crazy question for c programmers
#include<stdio.h>
#include<string.h>
void main()
{
char name[5]="sajan";
printf("%s",name);
getch();
}
output:
sajan with a grbage value...................
que1:-where it store the null character if size is equal to the characters entered?...