C Programming - Declarations and Initializations - Discussion

Discussion Forum : Declarations and Initializations - Find Output of Program (Q.No. 1)
1.
What is the output of the program given below ?
#include<stdio.h>
int main()
{
    enum status { pass, fail, atkt};
    enum status stud1, stud2, stud3;
    stud1 = pass;
    stud2 = atkt;
    stud3 = fail;
    printf("%d, %d, %d\n", stud1, stud2, stud3);
    return 0;
}
0, 1, 2
1, 2, 3
0, 2, 1
1, 3, 2
Answer: Option
Explanation:

enum takes the format like {0,1,2..) so pass=0, fail=1, atkt=2

stud1 = pass (value is 0)

stud2 = atkt (value is 2)

stud3 = fail (value is 1)

Hence it prints 0, 2, 1

Discussion:
57 comments Page 4 of 6.

Sushmita said:   4 years ago
What is the meaning of atkt ?

Please explain to me.
(4)

HARIPRASATH PANNEERSELAVAM said:   9 years ago
@RamKrishnan - Thanks for your kind information.

Subrato said:   7 years ago
Why are we getting sequence 2 after sequence 0?

Subhabrata said:   1 decade ago
What is "status" here for? can anyone tell me?

Sivaraman said:   1 decade ago
Will enum operated state on 0? I confused.

Shivesh said:   1 decade ago
This coding throws error in gcc compiler.

Samadhan Sakhale said:   1 decade ago
Will you please tell me enum in short?

Nikhil said:   1 decade ago
What is enum please explain in brief?

Mamun Rahaman said:   9 years ago
Thanks for all your kind information.

Ameya said:   2 years ago
Atkt ----> Allowed to keep terms.
(1)


Post your comments here:

Your comments will be displayed after verification.