What is switch in c?
No Answer is Posted For this Question
Be the First to Post Answer
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What extern c means?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
what is the disadvantage of using macros?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
can we execute the program with the object file
difference between ordinary variable and pointer in C?
How can I convert a number to a string?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
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