Question Detail
What will be output of
#include
void main()
{
char test =`S`;
printf("\n%c",test);
}
void main()
{
char test =`S`;
printf("\n%c",test);
}
- S
- Error
- Garbage value
- None of above
Answer: Option A
Answer: Option A