What is the output of this program?
#include <stdio.h>
struct test (
Int x = 0;
char y = 'A':
int main()
{
struct test t;
printf("%d, %c", t.x, t.y)B
retun 0;
}
Options
Error
0, A
0
None of these
Answers
Answered by
0
Answer:
Error
Explanation:
Similar questions