c clear buffer
void clearBuffer() {
char c;
do {
c = getchar();
} while (c != '\n' && c != EOF);
}
c clear buffer
void clearBuffer() {
char c;
do {
c = getchar();
} while (c != '\n' && c != EOF);
}
create a buffer in c
#define MY_BUFFER_SIZE 1024
char mybuffer[MY_BUFFER_SIZE];
int nBytes = read(sck, mybuffer, MY_BUFFER_SIZE);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us