Formatting Text

Formatting Text

Question:
I am doing a word processing programs which perform a task called center justification on one paragraph user enters–similar with the center justification function performed by MS-Word.I have to use dynamic memory manipulation and pointers. Could you give me an idea about the design?Or, Could you tell me any reference book that talk about word processing?

Answer:
As you might expect, writing a word processor is a major task with all sorts of issues that can be raised. If all you need to do is format text and not store it, your task is considerably easier.

Centering text usually refers to alignment, while justification often refers to changing the spacing between words to make each line the same length. If all you want to do is center text, you have two tasks.

First, you’ll need read the paragraph a word at a time and determine how many words will fit on each line. The code for this depends on your environment (DOS or Windows, graphics mode or text, etc.). Basically, you’ll just need a way to determine how much text will fit per line. This step is valid regardless of how the text will be aligned.

Next, you need to print the text so that it is centered. This is pretty straight forward. The horizontal position where you start printing the line would be the length of the window (page?) minus the length of the line, divided by two.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes