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
~3K People Reached
Favorite Tags
c++ x 9
c x 6
Member Avatar for bdubb24

Ok, so I am a freshman in college. I am taking a Software Programming class this fall semester and I'm totally lost. The teacher has to be the worst teacher ever. I've been trying to learn from the internet, but I decided to come to a forum where I could …

Member Avatar for fonzi
0
329
Member Avatar for RideFire

This is really making mad. I'm trying to add two numbers. This is a basic code that I can't get to compile. [CODE]#include <stdio.h> #include <stdlib.h> extern int addus(int,int); int main() { int a; int b; int result; a=5; b=6; result = addus(a,b); printf("Your value is: %d", result); return EXIT_SUCCESS; …

Member Avatar for RideFire
0
137
Member Avatar for RideFire

Here is my question that I can't manage to google and solve. I wrote a simple C++ program that adds two numbers. However, how do I call an assembly code to do this addition. It will be easier to show what I have so here it is. Here is my …

Member Avatar for raptr_dflo
0
215
Member Avatar for RideFire

I know C++, but I'm trying to learn C. Anyways, what am I doing wrong here. If I delete the line with 'scanf', it will compile so obviously I'm doing something wrong there. Anyways... [CODE]#include <stdio.h> int main() { int x; printf("enter a number\n"); scanf("%d", &x); printf("Your number is: %d\n", …

Member Avatar for RideFire
0
92
Member Avatar for RideFire

This is my prompt. Write a program that asks the user how many twin primes the user wants to find, reads in that goal, and then successively examines the numbers starting at 2 to see if the number is a twin prime. The program stops when the specified number of …

Member Avatar for RideFire
0
2K