prototype of sine function.
Answers were Sorted based on User's Feedback
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
what is difference b/w extern & volatile variable??
How can I manipulate individual bits?
What is main () in c language?
What is boolean in c?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
what is void pointer?
write a c program in such a way that if we enter the today date the output should be next day's date.
why division operator not work in case of float constant?
How do you write a program which produces its own source code as output?