the constant value in the case label is followed by a
a) semicolon
b) colon
c) braces
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is selection sort in c?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
What is the difference between typedef struct and struct?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
Explain what is output redirection?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is a protocol in c?
What is the function of multilevel pointer in c?
write a program for odd numbers?
Why do we use & in c?