Forum: C Nov 23rd, 2008 |
| Replies: 1 Views: 946 do you have any tips on where to start? |
Forum: C Nov 15th, 2008 |
| Replies: 0 Views: 616 Hi all.
I am attempting my first Gnome applet creation and I found a great
tutorial at http://projects.gnome.org/ORBit2/appletstutorial.html .
Unfortunately, I am stuck where the example goes to... |
Forum: C Oct 8th, 2005 |
| Replies: 4 Views: 6,152 ok that solved that problem.
the thing i don't really get is how to tell it to read lines 2+3 then skip line 4 and read line 5 (ecc...) |
Forum: C Oct 8th, 2005 |
| Replies: 4 Views: 6,152 thanks!that worked.
but now my problem is how to deal with the input file, in my code i tryed to select the needed infos but the output looks pretty awful.
this is a /proc/cpuinfo formatting
... |
Forum: C Oct 7th, 2005 |
| Replies: 4 Views: 6,152 hi everybody.
i am trying to develop a program that will be able to read and export informations (hw, sw, kernel, netstats..ecc) from a linux computer.
my idea was to use the files in the /proc... |
Forum: C Jul 31st, 2005 |
| Replies: 1 Views: 1,582 hi.
question 1:
i am writing a small C script to convert files to another format.
in this case i need my script to use all files in a directory that have extension .htm - how can i do this?
the... |
Forum: C Oct 15th, 2004 |
| Replies: 13 Views: 4,027 god bless you it works perfectly now!
grazie mille :cheesy: |
Forum: C Oct 14th, 2004 |
| Replies: 13 Views: 4,027 thanks alot the sinus problem is solved now.
this is the final code:
// Calcolo formula per Legge di Murphy (www.andreagozzi.com)
// Inclusione librerie in directory di sistema
#include... |
Forum: C Oct 14th, 2004 |
| Replies: 13 Views: 4,027 i am confused now, that's sure...
so then if i want to get a decimal result of (1-sin((x/10)) what do i have to do considering x is a number between 0.00 and 9.00? |
Forum: C Oct 13th, 2004 |
| Replies: 13 Views: 4,027 ok i did that.thanks
the link is (#include <math.h>) ok but i'm not sure about the sin() function because somebody says the output is in radiants while other say in decimal numbers |
Forum: C Oct 13th, 2004 |
| Replies: 13 Views: 4,027 // Calcolo formula per Legge di Murphy (www.andreagozzi.com)
// Inclusione librerie in directory di sistema
#include <math.h>
#include <stdio.h>
#include <string.h>
// Funzione Main()
main()
{... |