Computer Science, asked by maheshmagii14, 8 months ago

What will be the output of the following
C code?
#include <stdio.h>
int main()

int a = 1,b=1,c;
c=a+++ b;
printf("%d, %d", a,b);

Answers

Answered by AnindaBasu
1

Answer:

The output of C code

a=2

b=1

Similar questions