Skip to content

Instantly share code, notes, and snippets.

View Bibek99's full-sized avatar
πŸ‘¨β€πŸ’»
Experimenting

Bibek Basyal Bibek99

πŸ‘¨β€πŸ’»
Experimenting
View GitHub Profile
@Bibek99
Bibek99 / font.cpp
Created November 1, 2020 07:27
Change font family and font size in C/C++ console
// Modify acc. for C
#include <iostream>
#include <Windows.h>
#include <cwchar>
using namespace std;
HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
void fontsize(int, int);
void main() {
fontsize(60, 80);
@Bibek99
Bibek99 / fontsize.cpp
Last active November 1, 2020 06:54
Increases the font size in C/C++ console
#include <iostream>
#include <Windows.h>
using namespace std;
HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
void fontsize(int, int);
void main() {
fontsize(60, 80);
cout << "Your Content..." << endl;
system("pause");
}