Computer Science, asked by erajavignesh, 2 months ago

What is the output of below program?

#include <stdio.h>

int main()
{

int i = (1, 2, 3);
printf("%d", i);

return 0;
}​

Answers

Answered by hemlatagriyam
0

Answer:

int i = (1,2,3); printf("%d",i );

Answered by hasamkhan786
0
Found Error in program because Wrong initialisation of variable i and header file is not include properly.
Similar questions