Docs

Die Seite verlinkt auf Nächste Seite.

Committer:
bulmecisco
Date:
Mon Jun 04 17:56:42 2018 +0000
Revision:
1:2b0e3e783590
Parent:
0:749dbf57cdeb
Docs 2;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bulmecisco 0:749dbf57cdeb 1 #include "stdio.h"
bulmecisco 0:749dbf57cdeb 2 #include "string.h"
bulmecisco 0:749dbf57cdeb 3 #include "Beva.h"
bulmecisco 0:749dbf57cdeb 4
bulmecisco 0:749dbf57cdeb 5 #pragma warning(disable : 4996)
bulmecisco 0:749dbf57cdeb 6
bulmecisco 0:749dbf57cdeb 7 void Beva::ausgabe(void) {
bulmecisco 0:749dbf57cdeb 8 printf("String: %s", str);
bulmecisco 0:749dbf57cdeb 9 }
bulmecisco 0:749dbf57cdeb 10
bulmecisco 0:749dbf57cdeb 11 void Beva::eingabe(void) {
bulmecisco 0:749dbf57cdeb 12 scanf("%s", str);
bulmecisco 0:749dbf57cdeb 13 }