What is a protocol in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for the normal snake games find in most of the mobiles.
how should functions be apportioned among source files?
What is the explanation for prototype function in c?
Can anyone tell what is stack overflow? what precaution we should take?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
Which function in C can be used to append a string to another string?
write a program to remove occurrences the word from entered text?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
why u join this call center?
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.
What is a symbolic constant?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?