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
0
Answer:
int i = (1,2,3); printf("%d",i );
Answered by
0
Found Error in program because Wrong initialisation of variable i and header file is not include properly.
Similar questions