User profile: Kynsin

User info
User name:Kynsin
Name:Josh
History
Joined:
Number of posts:5
Latest posts:

sqrt table + command line argument
[code] if ((beg < end) && (end > 0)) { for (i = beg; i <= end; i +=step) { if (i ...

sqrt table + command line argument
alright, so im getting nan error which is "not a number" apparently. for exmaple sqrt of -25 would j...

sqrt table + command line argument
[code]#include <stdio.h> #include <math.h> int main(int argc, char *argv[4]){ int beg, end, step...

sqrt table + command line argument
Say i was to type something like a.out -15 30 5 I need to produce a table of numbers and their squ...

sqrt table + command line argument
I need to create a program that provides a table of numbers and their square roots using a command l...