No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
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: …
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.
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 = …
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 …
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 …
The End.
IcantC