in multiple branching construct "default" case is
a) optional
b) compulsarily
c) it is not include in this construct
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is pass by value in c?
Explain what are bus errors, memory faults, and core dumps?
Do you know the difference between malloc() and calloc() function?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
what will happen if you free a pointer twice after allocating memory dynamically ?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Program to find largest of three numbers without using comparsion operator?
in malloc and calloc which one is fast and why?
Which header file is essential for using strcmp function?
main() { printf("hello"); fork(); }
how to swap 2 numbers in a single statement?
Explain built-in function?