Write a program to compare two strings without using the
strcmp() function
Answer Posted / muku
all are wrong answer
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Are the outer parentheses in return statements really optional?
Can you mix old-style and new-style function syntax?
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
How do you redirect a standard stream?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
write a proram to reverse the string using switch case?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Explain logical errors? Compare with syntax errors.
How do you determine the length of a string value that was stored in a variable?
Why double pointer is used in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a program to swap two numbers without using a temporary variable?
What is an auto variable in c?
Write a code of a general series where the next element is the sum of last k terms.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }