enum day = { jan = 1 ,feb=4, april, may}
what is the value of may?
a)4 b)5 c)6 d)11
e)none of the above
Answer Posted / rajamanickam.m
none
| Is This Answer Correct ? | 15 Yes | 18 No |
Post New Answer View All Answers
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is the heap in c?
Are negative numbers true in c?
Explain how do you list files in a directory?
Explain Basic concepts of C language?
What is use of null pointer in c?
How can you invoke another program from within a C program?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Explain the array representation of a binary tree in C.
Where is c used?
What are global variables and how do you declare them?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is wild pointer in c with example?