Hallo erstmal =)
Ich programmiere seit ein paar monaten in C und wollte mal fragen, ob jemand weiß wie ich in C ( in C und nicht in C# oder C++, weil bei google habe ich nur für c++ oder c# anleitungen dafür gefunden -.-) eine Zufallsfunktion erstellt, oder ob es diese schon gibt, und wie der syntax davon ist.
Das ist zwar eine andere Baustelle, aber wenn jemand schonmal dabei ist eine antwort zu schreiben, würde ich gerne noch fragen, wie man mit einer if Konstruktion abfragt, ob ein element eines char-arrays é,É,è,È,á,Á,à,À,ó,etc enthält, und ob man jedes einzelne element überprüfen muss, oder ob das auch einfacher geht…hier ist ein beispiel, wie ich es bisher gemacht habe:
printf(„m%cnnliche form von ‚franz%csischsprachig‘:\n“, ae, oe);
scanf("%s", francophone);
if(( francophone[0] == 102) && ( francophone[1] == 114) && ( francophone[2] == 97) && ( francophone[3] == 110) && ( francophone[4] == 99) && ( francophone[5] == 111) && ( francophone[6] == 112) && ( francophone[7] == 104) && ( francophone[8] == 111) && ( francophone[9] == 110) && ( francophone[10] == 101))
{
printf(„Richtig!\n\n“);
vp++;
}
else
{
printf(„Falsch!\nRichtig ist ‚francophone‘!\a\n\n“);
vn++;
}