-
Replied To a Post in IDE
You probably won't be surprised to find out that this has been [discussed here at length before](https://www.daniweb.com/software-development/python/threads/419902/best-python-ide), nor that no real conclusions were ever reached. The appeal and value of … -
Began Watching please help me.
1. Give a definition of a class named Arithmetic whose methods are three add() and multiply() and one subtract() and divide(). 2. Parameter for add() and multiply() should be two, … -
Replied To a Post in please help me.
If you have a question like this, please start a new thread rather than resurrecting a long-dead one like this. As for why `printf()` and `scanf()` aren't used in Java … -
Began Watching Constructors/Destuctors
Hi all! I'm having some trouble with constructors and destructors. I've been told that a constructor creates an object and a destructor destroys it. The problem is that in my … -
Replied To a Post in Constructors/Destuctors
The purpose of the d'tor is not to free the object itself; that is done by `delete`, which should only be applied to dynamically allocated memory (that is, values allocated … -
Replied To a Post in Foreign key
And did the constraint show up under Foreign Keys? It won't be listed with the field itself. -
Began Watching VB6 complete code
Hello i want to know a complete code of finding a correct answer of MCQs in VB 6 and if answer is true then it shows the answer in Green … -
Replied To a Post in VB6 complete code
**fdis**: Help you with what, learning not to hijack three-month-old threads without even asking a question? Gladly. If, on the other hand, you want help with a programming problem, you … -
Began Watching Can someone help me with this C++ problem?
Without using arrays, write a complete program that reads three integers from the console and outputs the same three numbers in ascending order on separate lines. For example if the … -
Replied To a Post in Can someone help me with this C++ problem?
I would prompt you to consider a shorter if somewhat more complex solution, one which works by *sorting* the three values. While a full sorting function is a bit heavyweight … -
Began Watching meealy machine
how can we read the output in a mealy machine eg, i want to run the 10011 in a mealy machine what is the output of this string ? -
Replied To a Post in meealy machine
It would be impossible to say without more information, as the term [Mealy Machine](https://en.wikipedia.org/wiki/Mealy_machine) refers to a *class* of [Finite State Automata](https://en.wikipedia.org/wiki/Finite-state_machine), not a specific FSA. You would have to … -
Replied To a Post in IPO Table
Just to make it clear that it is in fact appearing in Netbeans 8.0, this screenshot shows it as it should appear on your screen. -
Replied To a Post in Foreign key
This is where you will find the information about the foreign key constraint after it is created. -
Replied To a Post in Foreign key
Just to make sure we're on the same page: you went to the 'Foreign Keys' section for the 'Animal_Cruelty' table, selected 'Execute Command', and entered the following code (or something … -
Replied To a Post in IPO Table
That's very strange. What version of Netbeans are you using? I just installed the [newest version (8.0)](https://netbeans.org/), which does indeed have Boolean, but if you have an older version it … -
Began Watching How to call function in C?
How to call function in C? -
Replied To a Post in How to call function in C?
Simple: func(); If you have ever used `printf()` or any other standard library calls, you have made a function call. These functions are *not* part of the language; they are … -
Began Watching Is C++ enough?
i like c++, Is C++ enough to bring me a job or should i study something else? -
Replied To a Post in Is C++ enough?
There was a time when mad skillz was sufficient. In the 1970s, just claiming to be an assembly programmer would get you a high-paying job; in the mid-1980s, a C … -
Replied To a Post in How to increase the limit for long int? (Decimal to Binary program)
Well, I don't think going from a `long` to a `short` will help. BTW, I suggest you look at where the comment is in relation to the modulo expression. b=a/2; … -
Replied To a Post in IPO Table
OK, now that I can see what you are talking about, I can tell you that there is in fact a `BOOLEAN` option in the type pulldown, it just is … -
Began Watching Foreign key
Hey there!!!!!.......I'm kind of having a problem with creating a foreign key in the derby database on the netbeans platforms.Can anyone help me please? -
Replied To a Post in Foreign key
OK, I've finally got Netbeans running and connecting to a local (embedded) database that I created manually with IJ, so I've got a handle on what you are talking about. … -
Began Watching c++ program
while loop or doo loop the output should be like this 1 12 123 1234 123 12 1 and 1234 123 12 1 12 123 1234 tnx -
Replied To a Post in c++ program
**Nicolae_1**: First off, this is an English language forum, and giving an answer in another language (especially one poorly known outside of its home country such as Romanian) is extremely … -
Began Watching lamda expression to match beginning of line with any digit
I'm trying to design a lambda function that returns any line in a file that begins with any digit [0-9]. The point would be to return the whole line if … -
Replied To a Post in lamda expression to match beginning of line with any digit
It shouldn't be too much for a lambda expression, so long as you recall a) that you can use a boolean expression such as `in` in a regular statement, and … -
Began Watching How to increase the limit for long int? (Decimal to Binary program)
I'm trying to increase the limit up to a billion (or up to a hundred thousand). I don't know how. main() { long int a,b,c,d=0,e=1; clrscr(); printf(“Enter a Decimal Value: … -
Replied To a Post in How to increase the limit for long int? (Decimal to Binary program)
Also, which compiler are you using? If it is Turbo C, then you are limited to a `long` of 16 bits, which gives an `unsigned` maximum value of 65535. -
Began Watching Program multiples of 3 or 5, and 3 and 5 special print
Hi! To Everyone! Could you tell me how I can use GCC with that file comunicatoin, because : g++ main.cpp program1.cpp -o program1.exe - not valid - It didn't saw … -
Replied To a Post in Program multiples of 3 or 5, and 3 and 5 special print
I the absence of other information, I would recommend trying the `-I` option with the path to the header files in question. g++ -Ipath\to\include main.cpp program1.cpp -o program1.exe However, if … -
Replied To a Post in IPO Table
That doesn't make sense - it should be there, and called `BIT`. I'll look into it myself and find out what is going on. -
Replied To a Post in IPO Table
Well, technically, *every* data type is bit data, though not in any useful sense; I think you are confusing the terms 'bit' and 'byte'. No, what I mean is, `BIT` … -
Replied To a Post in IPO Table
Ah, yes, in SQL (not just Derby), there is a type BIT which is usually used for Boolean values. -
Replied To a Post in IPO Table
What sort of help do you need? -
Replied To a Post in IPO Table
You have Derby configured to work with your development tools, right? That probably means that it is going through JDBC, which makes for a nicely standard API. OK, then. What … -
Replied To a Post in Java 8 cant do MS Access anymore?
Good points, to be sure, but I was hoping to hear from the OP about *their* reasons. Actually, my assumption was that the OP didn't know SQL, and had done … -
Gave Reputation to stultuske in Java 8 cant do MS Access anymore?
I can't speak for the OP, of course, but even though I wouldn't recommend using an Access DB, I do know of some reasons that may cause people to think … -
Began Watching access structure member from structure pointer using indexing
Hi guys, I want to access the element of structure from structure pointer using indexing for below code snippet. apart from this I also would like to know is there … -
Replied To a Post in access structure member from structure pointer using indexing
No, it isn't possible in C (it can be done in C++, using operator overloading, but it would require you to write the overloaded operator function). The solution is to … -
Began Watching Java 8 cant do MS Access anymore?
I hear that the new version of Java, Java 8, does not support a way to connect to MS Access database... I have a rather big problem in this case … -
Replied To a Post in Java 8 cant do MS Access anymore?
If you don't mind me asking, why is it you can't (or won't) shift to a different DBMS? Access itself **is** a SQL RDBMS, if a very limited one; it … -
Began Watching Switch Statement turbo c++
Can someone help me about converting numbers to roman numeral 1-999 via switch statement ? please help me ! -
Replied To a Post in Switch Statement turbo c++
I see. That's an unfortunately common problem, and frankly, the best solution is to walk out of the course, making sure the instructor knows why you are getting out. You … -
Began Watching CASH REGISTER. How?
Uhmm. I need help! I need a code in our case study. And I don't know how to start it. Please, someone help. I need to pass this on thursday, … -
Replied To a Post in CASH REGISTER. How?
Before we begin, let us make on thing clear: we won't do the work for you. Period. We are here to help you learn, not help you get a good … -
Began Watching IPO Table
I Need Some assistance Desperately. -
Replied To a Post in IPO Table
While Slavi's answer is indeed a good starting point, I think we could help some more as well if you could give us some more information. Let's start with a … -
Replied To a Post in map creation using link list in c
MIB? Can you be a bit more specific? As [this disambiguation page](http://en.wikipedia.org/wiki/MIB) implies, there are several possible meanings for that acronym. In any case, the really necessary questions are: * …
The End.