LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   help me URGENT PLZ (https://www.linuxquestions.org/questions/programming-9/help-me-urgent-plz-595258/)

Evelyne 10-28-2007 12:27 PM

help me URGENT PLZ
 
hi
I need an answer for the following questions after I have managed to get the first two sets of programs to run correctly:

Power 1:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main()
{
int num1,num2;


printf("Enter a number: ");
scanf("%d", &num1);

for(num2 = 0; num2 < 9; num2++)
{
printf("power %d: %d\n", num2, ((int)(num1/pow(2, num2))));
}

return;
}





power2 :
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main()
{
int num1,num2,num3;


printf("Enter a number: ");
scanf("%d", &num1);


for(num2 = 0; num2 < 9; num2++)
{
num3= num1>>num2;

printf("power %d: %d\n", num2, num3);

}
return;
}








1. How is the math library available within the file system?
2. What are the names of the files that correspond to the math library?
3. List at least two possible ways for linking against the math library.
4. Is there an alternative way for generating the "string-compare-2"executable file? If yes, describe it

acid_kewpie 10-28-2007 12:30 PM

welcome to LQ.org... a few pointers...

1. do not shout (use capital letters)
2. do not demand urgent help from a voluntary community
3. use useful and informative thread titles
4. do not as for help with homework
5. say please and thankyou (well.. never hurt did it?)

due to point 4, this thread is being closed... you need to learn these things for yourself using course material and other resources provided for you. not expect others to help you cheat.


All times are GMT -5. The time now is 05:26 AM.