What is storage class?
No Answer is Posted For this Question
Be the First to Post Answer
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
What is the use of define in c?
How can you call a function, given its name as a string?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
Why is c platform dependent?
who invented c
List the variables are used for writing doubly linked list program.
What is %s and %d in c?
write a c program to check weather a particluar bit is set or not?
write a c program to add two integer numbers without using arithmetic operator +