Forum: Java Dec 22nd, 2007 |
| Replies: 1 Views: 3,957 Hello,
I'm currently developping a GUI OpenVPN wrapper in Java ( platform is WinXP ).
I'm having a problem when I launch OpenVPN using Java Runtime.getRuntime().exec(), a problem I have been... |
Forum: C Oct 29th, 2007 |
| Replies: 3 Views: 6,560 For 1D arrays : use a single "for" loop to go through the array and print the current array element.
This code for example will print all the elements of a 1D array.
int array[5]={9,8,7,6,5};... |
Forum: C Oct 29th, 2007 |
| Replies: 4 Views: 1,567 Hello.
Here's my structure:
struct settings {
char setting[40][255];
}; |