Menu
Coddy logo textTech

Card Box

Lesson 2 of 6 in Coddy's Playing Cards Generator (Text Based) course.

Let's start!

challenge icon

Challenge

Easy

Write a function printCard which gets no input and prints a card box.

Card box is the skeleton of a card, it is made of 6 special characters - , , , , ,

The size of the box is 9 chars width and 11 chars height.

 

Read more about Box-drawing characters

Try it yourself

#include <stdio.h>

void printCard() {
    // Write code here
}

All lessons in Playing Cards Generator (Text Based)