Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~11.3K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for IcantC

Hi there, I am trying to compile devcpp project that contains one source file helloworld.cpp [CODE] #include <iostream> using namespace std; int main () { cout << "Hello World!"; system("PAUSE"); return 0; }[/CODE] I get this error: [ICODE] C:\Dev-Cpp\Makefile.win [Build Error] [helloworld.o] Error 1 [/ICODE] Compile log is as follows: …

0
145
Member Avatar for IcantC

Hi there, My question is how could I output byte value (meaning zeros and ones) to screen. I just want to try some shifts and see how it works.

Member Avatar for IcantC
0
10K
Member Avatar for javabeg123

Think of algorithm and methods you may need before implementing your task. I'd suggest this skeleton for your program: [CODE]public class Weight { private static final double WOMANWEIGHT = 55.5; private static final double MANWEIGHT = 60; private static final int MALE = 1; private static final int FEMALE = …

Member Avatar for IcantC
0
189
Member Avatar for IcantC

Hello, forum. My question is: how can I format my output when outputting in JTextArea. I want to have the same functionality as System.out.format has (custom spaces between values). Maybe it is possible to print PrintSream objects in JTextArea? I am currently using append(String s) method but I am not …

Member Avatar for IcantC
0
734
Member Avatar for asilter

If you have a C structure i.e like this: [CODE] typedef struct { int i; char* string; } myStructure; [/CODE] and you have an array of that structure's elements: [CODE] myStructure myArray [100]; [/CODE] you can delete the element you want (by index) with this simple loop [CODE] while (index …

Member Avatar for IcantC
1
190

The End.