What does it mean when a pointer is used in an if statement?
No Answer is Posted For this Question
Be the First to Post Answer
Why does everyone say not to use gets?
how to make a scientific calculater ?
What is function prototype in c language?
What is the difference between exit() and _exit() function in c?
What language is windows 1.0 written?
main() { printf("hello%d",print("QUARK test?")); }
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
Explain a pre-processor and its advantages.
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,