Web Page - http://www.cs.tau.ac.il/~efif/courses/Software1_Spring_04
Developing | Transfering | Submission | |
---|---|---|---|
Local | Remote | ||
Linux - gcc | TeraTerm | scp | netapp |
Windows - Visual | Exceed (slow from home) | winscp | gcc |
Windows - gcc (cygwin) |
#include <math.h>
long int labs(long int j)
- the absolute value
double ceil(double x)
- smallest integral
value not less than argument
double floor(double x)
- largest integral
value not greater than argument
double exp(double x)
- the value of e raised to
the power of x
double log(double x)
- the natural logarithm
of x
double log10(double x)
- the base-10 logarithm
of x
double pow(double x, double y)
- the
value of x raised to the power of y
gcc -Wall -o prog -lm prog.c |
#include <ctype.h>
int toupper(int c)
- the upper case of
c
int tolower(int c)
- the lower case of
c
int isalpha(int c)
- c
represents
an alphabetic letter
int isdigit(int c)
- c
represents
a digit