Answers for "contoh A"

C++
0

contoh A

#include <iostream>

using namespace std;

int main() {
	char str[] = "Do not interrupt me";
	char ch = 'm';
	
	cout.write(str,6);
	cout << endl;
	cout.put(ch);
	
	return 0;
}
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language