c program to compute AREA under integral
No Answer is Posted For this Question
Be the First to Post Answer
Who invented b language?
write a programming in c to find the sum of all elements in an array through function.
where do we use volatile keyword?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain what is wrong with this statement? Myname = ?robin?;
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Explain Basic concepts of C language?
can we declare a function in side the structure?
How can I find out the size of a file, prior to reading it in?
Will Macros support multiple arguments ?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
Is double link list a linear data structure? If Yes, Why?If No, Why?