โช Choose the correct option.
What will be output of the following “c” code?
#include
void main ( )
{
int c = --2;
printf("%d" , c);
}
#include
void main ( )
{
int c = --2;
printf("%d" , c);
}
#include
void main ( )
{
int c = --2;
printf("%d" , c);
}