prototype of sine function.

Answers were Sorted based on User's Feedback



prototype of sine function...

Answer / guest

extern double sin(double)

Is This Answer Correct ?    6 Yes 0 No

prototype of sine function...

Answer / guest

sin()

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More C Interview Questions

What is bubble sort technique in c?

0 Answers  


Explain can the sizeof operator be used to tell the size of an array passed to a function?

0 Answers  


What is array of structure in c programming?

0 Answers  


Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

5 Answers   Accenture,


Why is main function so important?

0 Answers  






how to write a bubble sort program without using temporary variable?

1 Answers   Aricent,


hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????

1 Answers  


What is the exact difference between '\0' and ""

3 Answers  


Why c++ is called c++ and not c+?

9 Answers   EBS,


Write a program to generate prime factors of a given integer?

9 Answers   Microsoft,


Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********

4 Answers  


int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?

5 Answers   CMC,


Categories