Is stack a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is void main used?
What is the most efficient way to count the number of bits which are set in an integer?
What is scope of variable in c?
Who is invented by 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.
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Explain how can I remove the trailing spaces from a string?
write a program to swap two variables a=5 , b= 10 without using third variable
What is main function in c?
Explain what is the advantage of a random access file?
Why c++ is called c++ and not c+?
Write a code to generate a series where the next element is the sum of last k terms.