Forum: Windows NT / 2000 / XP Jul 8th, 2008 |
| Replies: 0 Views: 280 Hello to all,
I didn't find informations about what is overall limit to store documents in Google/gmail online documents. I have fond only how big files can be in orderd to be able to upload them,... |
Forum: Windows NT / 2000 / XP Jun 12th, 2008 |
| Replies: 5 Views: 3,719 Thank you all for your replies. I wll use third party software, of course. I know that one way to repartition drive is when fresh copy of Windows is installed. However I wan't sure if that is... |
Forum: Windows NT / 2000 / XP Jun 10th, 2008 |
| Replies: 5 Views: 3,719 Hello,
is it possible to resize partitions under win XP using Disk management tools, or I need special software for that? I know there are couple of software tools such as Partition Magic. However,... |
Forum: IT Professionals' Lounge Apr 4th, 2008 |
| Replies: 8 Views: 1,456 Hello people,
I wonder if there are free web space that can be used. Basically I need storage (ftp) if possible to place materials and worksheets. For example I participate on sci groups and I do... |
Forum: Motherboards, CPUs and RAM Mar 16th, 2008 |
| Replies: 1 Views: 470 Hello to eveyone,
I'm reading one article about CPU utillisation in programmable logic controllers, which are also computer based systems. In article is stated that CPU's time is spent on executing... |
Forum: Storage Mar 6th, 2008 |
| Replies: 4 Views: 569 Thank you for your reply,
I have PIII board with SCSI disk. I want to buy backup disk. SCSI controller and all other hardware is there. I don't have here configuration to post, but I can do it... |
Forum: Storage Mar 6th, 2008 |
| Replies: 4 Views: 569 Hello people,
I wonder why many business machines such as servers and process computer (I work in one power plant) use SCSI disks? I noticed that practically all computers that do a lot of... |
Forum: IT Professionals' Lounge Dec 30th, 2007 |
| Replies: 5 Views: 722 I only have entry for localhost, so my computer is clean, I suppose.
Thank you for your help. |
Forum: IT Professionals' Lounge Dec 26th, 2007 |
| Replies: 5 Views: 722 Gereetings everybody,
I'm reading this article:
http://www.daniweb.com/blogs/entry1911.html
I must admit I cannot understand how this is possible? Is this problem affects only users computers or... |
Forum: Windows NT / 2000 / XP Jun 13th, 2007 |
| Replies: 1 Views: 2,248 Hello, do you know where to find drivers in order to use USB flash disk on machines with Win NT 4.0.
I have found drivers for win 98 and once I installed them, I was able to use three different USB... |
Forum: C Jun 7th, 2007 |
| Replies: 4 Views: 4,749 Yes, I see now, what a stupid mistake.
Thanks Narue |
Forum: C Jun 6th, 2007 |
| Replies: 4 Views: 4,749 Hmm, this is important part:
mat1 = malloc(cols * sizeof(int*));
for(i = 0; i < cols; i++)
{
mat1[i] = malloc(rows * sizeof(int));
}
First I allocate array of pointerts to int.... |
Forum: C Jun 6th, 2007 |
| Replies: 4 Views: 4,749 Hello guys,
It's been a while since I last time posted in this forum.
I have strange problem regarding matrix allocation. I was asked to write code that includes 2D array dynamic allocation. I... |
Forum: IT Professionals' Lounge May 13th, 2007 |
| Replies: 0 Views: 715 Hello,
maybe this is not the right forum, but I hope you'll be able to help.
How many of you used google groups? I have recently signed in but I'm having problem posting new topics. Every time I... |
Forum: Windows NT / 2000 / XP Feb 13th, 2007 |
| Replies: 2 Views: 956 Hello people,
I have one interesting problem and need your advices.
A few days ago, my friend called me and asked for help. He said he had problem with internet connection. It is old computer 400... |
Forum: IT Professionals' Lounge Dec 15th, 2006 |
| Replies: 1 Views: 2,275 Hello guys,
I want to buy DVD player for home use (not computer DVD device). I want DVD player to be able to play DVD+RW 8 cm double side disk. I assume most of today's DVD player support this... |
Forum: Windows NT / 2000 / XP Oct 30th, 2006 |
| Replies: 0 Views: 1,246 Hello guys,
I have formated hard drive at my neighbour's computer. It's relatively new computer with Pentium 4 processor and intel motherboard. Installing windows Xp passed all right, but there was... |
Forum: C++ Oct 10th, 2006 |
| Replies: 10 Views: 8,559 I disagree. Many people thinks bubble sort is easiest just because it is usually first sort algorithm teached in many books and classrooms. It's performance are bad for large lists and it's much... |
Forum: C++ Oct 10th, 2006 |
| Replies: 10 Views: 8,559 If you need to write sort code, I would recommend insertion sort.
Read this:
http://www.eternallyconfuzzled.com/tuts/sorting.html |
Forum: C++ Oct 9th, 2006 |
| Replies: 3 Views: 5,173 Have a look at this:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
using namespace std; |
Forum: C Oct 6th, 2006 |
| Replies: 3 Views: 3,850 Indeed, it's not clear what you want. If you need to make program to perform some kind of matrix calculation, why not using two dimensional array defined something like this:
int matrix[10][10];
... |
Forum: C++ Sep 29th, 2006 |
| Replies: 15 Views: 29,292 Please, can you post you results and conclusion?
Did you manage to see voltage pattern for 'a'? |
Forum: C Sep 27th, 2006 |
| Replies: 1 Views: 747 Of course you can.
www.google.com is your friend... |
Forum: C Sep 27th, 2006 |
| Replies: 1 Views: 1,444 This (http://www.eternallyconfuzzled.com/tuts/sorting.html) is definitive guide to major sorting algorithms: |
Forum: C++ Sep 22nd, 2006 |
| Replies: 10 Views: 3,434 Yes, I know. That was my answer!
P.S. You should distinct union (http://mathworld.wolfram.com/Union.html) and intersection (http://mathworld.wolfram.com/Intersection.html)
And one more thing,... |
Forum: C++ Sep 21st, 2006 |
| Replies: 4 Views: 1,102 I assume your compiler is rather old.
Look at this code (modified loop)
for(int i=0;i<5;i++)
out<<&(ptarray[i])<<"\t"<<ptarray[i]<<endl; // (10)
And this is my output:
... |
Forum: C++ Sep 21st, 2006 |
| Replies: 10 Views: 3,434 You should also look at this (http://cboard.cprogramming.com/showthread.php?p=592354#post592354) ;) |
Forum: C++ Sep 20th, 2006 |
| Replies: 4 Views: 1,102 You defined an array of pointers to int named ptarray. Array's elements are pointers. So ptarray[i] represent array element which is actually address of some variable elswhere. For example, if... |
Forum: C++ Sep 19th, 2006 |
| Replies: 4 Views: 3,819 Interesting, please try to stick to the Standard.
It's int main (void), not void main() |
Forum: C++ Sep 19th, 2006 |
| Replies: 6 Views: 1,176 Well, according to this:
http://www.cppreference.com/cppio/index.html
cin, cout are defined in iostream.
And this will also help ypu understand what is going on.... |
Forum: C++ Sep 15th, 2006 |
| Replies: 6 Views: 1,793 Okay,
first when you write header file, you want to make protection from including this file more than once (inclusion guard). This is usually done like this:
#ifndef FILE_NAME_H
#define... |
Forum: C++ Sep 13th, 2006 |
| Replies: 4 Views: 1,415 Exactly!
I'm not facing any problems! |
Forum: C++ Sep 12th, 2006 |
| Replies: 6 Views: 1,612 This is really a school example of how post shouldn't look like! |
Forum: C++ Sep 12th, 2006 |
| Replies: 4 Views: 1,415 // Operator overloaded using a member functionComplex
Complex Complex::operator+( Complex &other )
{
return Complex( re + other.re, im + other.im );
}
I hope this helps... |
Forum: Python Sep 6th, 2006 |
| Replies: 13 Views: 5,123 You can, for fun, choose sort algorithm, use list of words (strings) and use len() for comparison...
http://www.daniweb.com/code/snippet452.html
Then, if you have problems making it work you can... |
Forum: Python Sep 6th, 2006 |
| Replies: 3 Views: 7,249 You can define matrix using list:
matrix = [[1,2,3],[4,5,6],[7,8,9]]
print matrix[0][1]
As for multiplication program and Pascal's triangle, you'll need to show some effort. Matrix is... |
Forum: Python Sep 4th, 2006 |
| Replies: 3 Views: 1,047 Try to modify your save to file function.
Here's what I would do:
def save_students(filename,students):
out_file = open(filename, "w")
for x in students.keys():
... |
Forum: C Sep 3rd, 2006 |
| Replies: 5 Views: 1,310 Well if you don't want to bother with math notation that will probably confuse you more than you actually are, here (http://eternallyconfuzzled.com/articles/bigo.html) is pretty good explanation... |
Forum: C Sep 2nd, 2006 |
| Replies: 5 Views: 1,310 If you like more informations, this is another good link:
http://en.wikipedia.org/wiki/Big_O_notation |
Forum: Python Sep 1st, 2006 |
| Replies: 15 Views: 2,754 Well, you have defined function get_questions() not to take any arguments, but in lines:
while current < len(get_questions(index)):
and
print current,". ",get_questions(current)
you're... |