Forum: C
Feb 16th, 2006, 4:08 PM
|
|
Replies: 11
Views: 390
Thanks for the support
The problem wasn't the...
Thanks for the support
The problem wasn't the break statement being inside the switch, because I have other soon before the switch statement
printf ("\nPress '1' to realise a miles to kilometers...
|
Forum: C
Feb 16th, 2006, 3:23 AM
|
|
Replies: 11
Views: 390
|
Forum: C
May 18th, 2005, 3:03 PM
|
|
Replies: 2
Views: 254
How to say the size of an array using printf ?
Hi, I was trying to define the size of an array using the printf statement. I want to do something like this:
printf ("Say here the size of the array: "); to produce this:
int a [10] with 10 being...
|
Forum: C
Apr 26th, 2005, 7:55 AM
|
|
Replies: 3
Views: 284
|
Forum: C++
Mar 23rd, 2005, 3:56 PM
|
|
Replies: 2
Views: 257
2 problems
Hello, I am writing this program whose function is to insert coins into a machine and I don't know how to perform this actions:
#include <stdio.h>
main ()
{
int coins, i, result;
for...
|
Forum: C++
Mar 21st, 2005, 1:29 AM
|
|
Replies: 2
Views: 180
|
Forum: C++
Mar 20th, 2005, 5:26 AM
|
|
Replies: 2
Views: 180
A for loop inside of another for loop
I am doing a project with consists in printing on the screen a arithmetic table in this format using two variable values:
1 + 0 = 1/// 1 * 0 = 0/// 1 - 0 = 0
1 + 1 = 2/// 1 * 1 = 1/// ...
|