Here is a neat trick for checking whether two strings are equal
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of fflush() function?
Discuss the function of conditional operator, size of operator and comma operator with examples.
what is the function of pragma directive in c?
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
. Explain the differences between fork() and exec() in C
write a program in c to print **** * * * * ****
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What are the advantages and disadvantages of c language?
What is the total generic pointer type?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
How do I use strcmp?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work