What is calloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
Does sprintf put null character?
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.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Who invented bcpl language?
What is the use of ?
What is %lu in c?
Is it possible to run a c program without using main?If yes HOW??
What is the difference between new and malloc functions?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is void c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
I need a sort of an approximate strcmp routine?