Explain how many levels deep can include files be nested?
No Answer is Posted For this Question
Be the First to Post Answer
how to get starting address of a running C program
What is the exact difference between '\0' and ""
Which is better between malloc and calloc?
Explain how does free() know explain how much memory to release?
How can you find the day of the week given the date?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
Write a program to find minimum between three no.s whithout using comparison operator.
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
what is call by value and call by reference
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.