How to write a C program that Display a IBM Logo in C Programming Language ?
This IBM Logo Program -- A C Program that Display a IBM Logo.
Solution:
- /*IBM Logo Program -- A program that Display a IBM Logo*/
- #include <stdio.h>
- #define RED "\x1b[31m" // Colours for the logo to make it pretty!
- #define GREEN "\x1b[32m"
- #define BLUE "\x1b[34m"
- #define RESET "\x1b[0m"
- int main()
- {
- /* IBM logo created by me, I use block characters */
- printf(GREEN"╔════════════════════════════════════════╗\n");
- printf(GREEN"║"BLUE" ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄ ▄▄▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄ ▄▄▄ ▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄ ▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄ ▄▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄ ▄▄▄ ▄▄▄ ▄▄▄ ▄▄▄▄▄ ▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄ ▄▄▄ ▄▄▄▄"GREEN" ║\n");
- printf(GREEN"║"BLUE" ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▄▄▄▄ ▄ ▄▄▄▄"GREEN" ║\n");
- printf(GREEN"║"GREEN" "GREEN" ║\n");
- printf(GREEN"║"RED" FreeBSD lenovo ThinkCentre M58p "GREEN"║\n");
- printf(GREEN"║"RED" BSD UNIX Operating System "GREEN"║\n");
- printf(GREEN"╚════════════════════════════════════════╝"RESET"\n");
- }
Learn More :
Logo
Display
- DISPLAY SOURCE CODE AS OUTPUT IN C PROGRAM
- Sort Three Numbers - program reads in three Integers and displays them in ascending order.
- C Program To Display The Number In A Specific Formats
- C program calculates a given function in range given by user, stores the data in arrays and displays the answer in a table.
- LED ON OFF For One Sec/Count and Display on the Attached Serial Monitor
- Pre Order, Post order, In order Implement Binary Tree using linked list
- C Program to accept m*n matrix from user and display the elements of given matrix using function
- C Program to accept n numbers & store all prime numbers in an array & display this result
- C program to display the transpose of given 3 X 3 matrix
- C Program to accept a string from user, delete all vowels from that string & display the result
- C Program To Create Two Singly Linked List and Perform Following Operation
- Create Two Singly Linked List Perform Differences Display It C Program
- C Program to Create, Display, Insert and Deletion of Queue Elements
- Creation and Display of Elements in Both Forward and Reverse Direction in a Doubly Linked List
- C Program to Display a real time clock (HH:MM:SS) on the LCD
- Program to Display Pie Chart Accepting User Input C Program
- Linked List For Getting Employee Details, Display and Search For Salary C Program
- Menu driven program in the creation,display,search, insertion and deletion of a node in the linked list
- Program to display the following pattern in C
- Display the Following Pattern * ** *** **** ***** C Program