main()
{
int l=6;
switch(l)
{
default:l=l+2;
case 4:l=4;
case 5:l++;
break;
}
printf("%d",l);
}
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Is main a keyword in c?
write a program to generate 1st n fibonacci prime number
write a program to convert a expression in polish notation (postfix) to inline (normal)
Is there any book to know about Basics of C Language?
which is the best antivirus and how to update it
What is a pragma?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What does %d do?
Can you pass an entire structure to functions?
difference between memcpy and strcpy