where are auto variables stored? What are the characteristics of an auto variable?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
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.
Explain how can I write functions that take a variable number of arguments?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is pragma in c?
how to make program without <> in libray.
What is the difference between functions abs() and fabs()?
What is the c language function prototype?
How can I access a memory located at certain address?
write a program to copy the string using switch case?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array