Manakah fungsi fopen yang benar, jika file yang ingin dibaca berada dalam satu folder?
File Processing

Quiz
•
Computers
•
University
•
Medium

PANDU WICAKSONO
Used 1+ times
FREE Resource
8 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
fopen("test2.txt", "r");
fopen("C:\\Users\\user\\Documents\\Latihan\\test2.txt", "r");
fopen("C:\Users\user\Documents\Latihan\test2.txt", "r");
fopen("test2.txt", "w");
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
isi file test2: Pandu
fp = fopen("test2.txt", "r");
char ch = fgetc(fp);
printf("%c", ch);
apa output dari potongan kode diatas
Pandu
P
p
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
isi file test2: Pandu
FILE *fp = NULL;
fp = fopen("C:\\Users\\user\\Documents\\Development\\Latihan\\test2.txt", "r");
Lanjutkan kode diatas agar dapat membaca isi dari file test2
while (!feof(fp))
{
char ch = fgetc(fp);
printf("%c", ch);
}
while (feof(fp))
{
char ch = fgetc(fp);
printf("%c", ch);
}
while (!feof(fp))
{
char ch = fgets(fp);
printf("%c", ch);
}
while (!feof(fp))
{
char ch = fgetc(fp);
printf("%s", ch);
}
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
bagaimana membuat Buffer Area?
file *nama_variable;
File *nama_variable;
FILE *nama_variable;
*nama_variable
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
mode yang digunakan untuk membaca (read) dan menulis (write) file binary adalah
"rb" dan "wb"
"r" dan "w"
"r+" dan "w+"
"a" dan "b"
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
file header mana yang dapat digunakan untuk File Processing
<stdio.h>
<stdlib.h>
<string.h>
<stdarg.h>
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
fungsi yang digunakan untuk membaca per karakter adalah
fgets()
fgetc()
fgetcc()
fstring()
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
fungsi untuk membaca file dengan panjang tertentu adalah
fgetc()
fgetch()
fgets()
gets()
Similar Resources on Quizizz
10 questions
Bitmap v Vector Images

Quiz
•
KG - University
10 questions
Digital Computer Graphics

Quiz
•
KG - University
10 questions
Makefile

Quiz
•
University - Professi...
10 questions
CHAPTER 4: IDS AND IPS

Quiz
•
University
10 questions
Programming in C

Quiz
•
University
10 questions
Tes Awal AlPro Modul 6

Quiz
•
University
10 questions
Data Exploration Quiz

Quiz
•
University
13 questions
Bài 16 Định dạng khung

Quiz
•
12th Grade - University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade