C | Operators | Question 4

Last Updated :
Discuss
Comments
 
#include <stdio.h>

int main()
{
    int i;
    
    i = 1, 2, 3;
    printf("%d", i);
    
    return 0;
}
1
3
Garbage value
Compile time error
Tags:
Share your thoughts in the comments