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 |
How do you use a pointer to a function?
How does sizeof know array size?
Which is an example of a structural homology?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
print out of string in this format; 1. "rajesh" 2. \n 3. %d
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
Three major criteria of scheduling.
can we initialize all the members of union?
Can we declare variables anywhere in c?
What is merge sort in c?
What is the symbol indicated the c-preprocessor?