Computer Science, asked by deepthisurampudi, 2 months ago

What will be the output of the following code?
#include<stdio.h>
int main()
{
int a[5]={5,12,7,8,23};
inti,j,k;
i=a[1]++;
j=++a[3];
k=++a[1];
printf("%d,%d %d",i,j,k);
return 0;
a) 12,9,14
b)12,13,14
c)12,14,12
d)12,4,12​

Answers

Answered by satyamkumar5428
2

b) is the correct answer

Similar questions