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
why do some people write if(0 == x) instead of if(x == 0)?
How can you be sure that a program follows the ANSI C standard?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
Do pointers need to be initialized?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Can a void pointer point to a function?
How does sizeof know array size?
When is a null pointer used?
What does do in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Explain logical errors? Compare with syntax errors.
Is stack a keyword in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What does emoji p mean?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles