In a switch statement, explain what will happen if a break statement is omitted?
No Answer is Posted For this Question
Be the First to Post Answer
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Explain what is the use of a semicolon (;) at the end of every program statement?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Explain what is a 'locale'?
How do you declare a variable that will hold string values?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
How to write a code for reverse of string without using string functions?
difference between string and array?
How is actual parameter different from the formal parameter?