1. What is the output of the following C code:
#include <stdio.h>
void main()
{
char *a = "2";
char *b = "3";
char *x = a + b;
printf("%c\t%c", *x, *b);
}
Answers
Answered by
0
Answer:
#include <stdio.h>
void main()
{
char *a = "2";
char *b = "3";
char *x = a + b;
printf("%c\t%c", *x, *b);
}
Explanation:
output will be a² + b³
it'll help
Similar questions