What is static memory allocation?
No Answer is Posted For this Question
Be the First to Post Answer
Why do u use # before include in a C Progam?
What is the difference between scanf and fscanf?
why we use pointer in c
What is the difference between if else and switchstatement
How can you tell whether a program was compiled using c versus c++?
Explain what are multibyte characters?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
What is actual argument?
explain what are actual arguments?
What are pointers in C? Give an example where to illustrate their significance.
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?