What are Macros? What are its advantages and disadvantages?
No Answer is Posted For this Question
Be the First to Post Answer
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How can you dynamically allocate memory in C?
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.
Why do we use static in c?
What is cohesion and coupling in c?
What is a function in c?
How can you determine the size of an allocated portion of memory?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How do I use strcmp?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What is calloc() function?
What is a stream?