Als «r» getaggte Fragen

82
Wie lösche ich den Eingabepuffer in C?

Ich habe folgendes Programm: int main(int argc, char *argv[]) { char ch1, ch2; printf("Input the first character:"); // Line 1 scanf("%c", &ch1); printf("Input the second character:"); // Line 2 ch2 = getchar(); printf("ch1=%c, ASCII code = %d\n", ch1, ch1); printf("ch2=%c, ASCII code...

82
Ganzzahl auf zwei Ziffern hex in Java

Ich muss einen ganzzahligen Wert in Java in einen zweistelligen Hex-Wert ändern. Gibt es dafür eine Möglichkeit? Vielen Dank Meine größte Zahl ist 63 und die kleinste ist 0. Ich möchte eine führende Null für kleine Werte.

82
Wie funktioniert ein statischer Konstruktor?

namespace MyNameSpace { static class MyClass { static MyClass() { //Authentication process.. User needs to enter password } public static void MyMethod() { //Depends on successful completion of constructor } } class Program { static void Main(string[] args) { MyClass.MyMethod();...

82
Einrichtung und Installation von Apache httpd

Dies ist mein erstes Mal, dass ich versuche, den Apache HTTP-Server als regulärer Benutzer (ohne Root) lokal in meiner Box zu installieren. Ich habe die Apache 2.4.1-Version des Apache HTTP-Servers [http://httpd.apache.org/download.cgi] heruntergeladen. Wenn ich jedoch versuche, lokal in meiner Box...

82
Grundlegendes zur PIVOT-Funktion in T-SQL

Ich bin sehr neu in SQL. Ich habe einen Tisch wie diesen: ID | TeamID | UserID | ElementID | PhaseID | Effort ----------------------------------------------------- 1 | 1 | 1 | 3 | 5 | 6.74 2 | 1 | 1 | 3 | 6 | 8.25 3 | 1 | 1 | 4 | 1 | 2.23 4 | 1 | 1 | 4 | 5 | 6.8 5 | 1 | 1 | 4 | 6 | 1.5 Und...