Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
73% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #16.0K
Ranked #3K
~3K People Reached
Favorite Tags
c x 8
c++ x 4
Member Avatar for merse

My problem is not serious, its just a question about the most beautifull solution. Maybe somebody has a better idea! I have a mathematical class having some numerical functions. It is convenient for me, and speed up the program, if I introduce a member array called "memory", and store the …

Member Avatar for mattjbond
0
166
Member Avatar for Alviery

It happens that I am doing a project for my computer class, but it seems not to work. This is the project : An employee is paid at a rate of $16.78 per hour for the first 40 hours worked in a week. Any hours over that are paid at …

Member Avatar for anup375
0
95
Member Avatar for ravenrider

Hello I had the seg fault last night, after making some changes, I don't have it anymore, the program compiles but it doesn't do anything ! " the program should read in data from the file in this following form : 2 Dell inspiron 299 Hp pavilion 499 " simply …

Member Avatar for Murtan
0
137
Member Avatar for nhalavanja

Hello all I am currently coding a starter multi threading program in c. It is supposed to find all the prime numbers from 2 to n. I have no previous experience in thread coding so I am looking for some help and maybe some debugging advise It only calculates primes …

Member Avatar for Salem
0
1K
Member Avatar for Xufyan

i want to write a program using "for" loop, that will generate the following output. value of a is 0, value of b is 2 value of a is 0, value of b is 4 value of a is 0, value of b is 6 value of a is 1, …

Member Avatar for WaltP
0
180
Member Avatar for Xufyan

Hello everyone i am new in C language and need some basic help. see this program, [CODE] void main(void) { int a,b; clrscr (); { for (a=1;a<5;a++) { for (b=2;b<6;b++) { printf ("value of a is %d , value of b is %d \n",a,b); b=a+1; a=a++; } } } getch(); …

Member Avatar for shah1248
0
293
Member Avatar for DCvonB

Hello, I am trying to create a doubly linked list that will print the entered input in the original order and then print it in the reverse order. Earlier I was able to get it to print the list twice, but the second time was not in the reverse order. …

Member Avatar for DCvonB
0
303
Member Avatar for tquiva

I am trying to find the value of a given base and exponent, with the exponent being an integer greater or equal to 0. However, I am getting strange numbers at output. Could someone please take a look at my code ? [CODE]/* File: driver3.c * Date: February 28, 2010 …

Member Avatar for anup375
0
105
Member Avatar for sdgz747

I wrote the following code for a homework problem, but it's stuck in an infinate loop. I'm not sure how to correct that problem. The other issue is I want the answer to be given in two decimal places and not rounded in any way and it appears that my …

Member Avatar for sdgz747
0
116
Member Avatar for Lukassi

Guys i need help with this icmp echo packet log. I need to identify the operating systems used in the originating system based on the information from the following captured data: [URL="http://i128.photobucket.com/albums/p191/Lukassi/icmp.jpg"]http://i128.photobucket.com/albums/p191/Lukassi/icmp.jpg[/URL] Thanks.

Member Avatar for anup375
0
52
Member Avatar for cyberguy007
Re: game

Using the example of 10, all the numbers from 1 to 10 are initially in the game. Suppose the user chooses 9; 9 is added to his score. The Tman gets 1 and 3 since these are exact divisors of 9; the Tman’s score is now 1 + 3 = …

Member Avatar for anup375
0
84
Member Avatar for konata_89

//help me i dont know what wrong with list function [code] #include <stdio.h> #define MAX 10 struct book{ char title[81]; char author[71]; char category[31]; }; int main() { struct book library[MAX]; int menu(void); struct book add(void); int list(struct book,int); int choice, count = 0; do { choice = menu(); switch( …

Member Avatar for konata_89
0
125