Computer Science, asked by rgoutam358, 4 months ago

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 TheWeirdGenius
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