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 |
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
code for concatination of 2 strings with out using library functions?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
what is dangling pointer?
What is null in c?
Which are low level languages?
What are the header files used in c language?
Is c easier than java?
How to print "Hi World" without using semi colon?