Help me out.
#include <stdio.h>
int main()
{
char str[] = "%d %c";
char a[] = "CodeQuotient";
return 0;
}
1.)printf(str, 0[a], 2[a + 3])
2)printf(str, 2[a], 3[a + 2]);
what will be the output of this question:
int main()
{
char str[] = "%d %c";
char a[] = "CodeQuotient";
return 0;
}
1.)printf(str, 0[a], 2[a + 3])
2)printf(str, 2[a], 3[a + 2]);
what will be the output of this question: