write a progam to compare the string using switch case?
switch(strcmp(str1,str2))
{
case 0: printf("\nBoth are equal"); break;
default:
printf("\nBoth are not equal");
break;
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Explain what is dynamic data structure?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Explain the use of #pragma exit?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
find the sum of two matrices and WAP for it.
why program counter is 16 bit?
what is mean by Garbage collection ? Please answer me. Advance thanks.
Can two or more operators such as and be combined in a single line of program code?
What is the equivalent code of the following statement in WHILE LOOP format?
program to print circle structure
What is difference between scanf and gets?
What does typeof return in c?