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 / guest
ans is 6
| Is This Answer Correct ? | 58 Yes | 10 No |
Post New Answer View All Answers
How does struct work in c?
How can I use a preprocessorif expression to ?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is the purpose of the preprocessor directive error?
What is gets() function?
How can I remove the leading spaces from a string?
What is a const pointer?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
In C language, a variable name cannot contain?
Write a code to generate divisors of an integer?
if p is a string contained in a string?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Why c is called top down?