What is the data segment that is followed by c?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Should I learn c before c++?
What are the complete rules for header file searching?
What does struct node * mean?
What are control structures? What are the different types?
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
What is the description for syntax errors?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
What is header file definition?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain what is the difference between functions abs() and fabs()?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }