Ich habe folgendes in C# programmiert und möchte es gerne in C haben:
int[] f1 = { 1, 3, 5, 6, 7, 11 };
string box1 = "";
for (int i = 0; i < f1.Length; i++)
{
box1 += Convert.ToString(f1 + ":");
}
Sonderlich weit bin ich nicht gekommen:
int f1[] = { 1, 3, 5, 6, 7, 11 };
string box1 = "";
for (int i = 0; i < sizeof(f1); i++)
{
???
}
MfG,
Michael
int[] f1 = { 1, 3, 5, 6, 7, 11 };
string box1 = "";
for (int i = 0; i < f1.Length; i++)
{
box1 += Convert.ToString(f1 + ":");
}
Sonderlich weit bin ich nicht gekommen:
int f1[] = { 1, 3, 5, 6, 7, 11 };
string box1 = "";
for (int i = 0; i < sizeof(f1); i++)
{
???
}
MfG,
Michael