How to remove Character from String in C using Pointer

Our mission is to learn how to remove character from string in C using Pointer. Let me think how, so we need to write a function that receives a character string (word) and a character as arguments and deletes all occurrences of this character in the string. The function should return the corrected string with no holes.

Example

String entered: database

Character entered: a

Result: dtbse

Nested Structure in C Programming with example

In this tutorial you’ll be learning about struct types or structure and an example of Nested Structure in C Programming. In C programming, a struct keyword is used to indicate structures that resembles a collection of variables with different types but under a single name.

Defining Structures

Unlike any other variables for which we immediately start with datatype, in case of structures we need to define its datatype. To define a structure in c programming, the struct keyword is used.

Syntax of struct

struct structureName {
    dataType fieldMember1;
    dataType fieldMember2;
    ....
};

8086 ALP to Convert Decimal number to Hexadecimal number

Problem: Write an 8086 ALP to Convert Decimal number to Hexadecimal number.
Title: Code for Assembly Language Program to Convert Decimal number to Hexadecimal number in Assembly Language
Description: This 8086 ALP takes decimal number as input from the user, checks if the number inputted is valid decimal number, if the number is valid decimal, the ALP converts Decimal number to Hexadecimal number and prints equivalent Hexadecimal number. If the number given by user is not a valid decimal numbers the it prints the message “Invalid decimal number”

How to create Windows Bootable USB in Ubuntu – WinUSB

WinUSB is a simple tool that enables you to create Windows Bootable USB in Ubuntu, your own USB stick windows installer from an ISO image or a real DVD. This package contains two programs:

WinUSB on Ubuntu 14.04
WinUSB on Ubuntu 14.04

WinUSB-gui: a graphical interface which is very easy to use
winusb: the command line tool

Currently there is no version for Ubuntu 14.04 in Ubuntu Repository. To successfully install Winusb on Ubuntu 14.04, you need to install the Saucy version and run the dependencies fix switch to fix the dependencies.

Assembly Language Program to print Strings in multiple lines (8086)

In this article, you’ll be learning how to write a Assembly Language Program to print Strings in multiple lines (8086). For this example code, we’ll have three different strings saved on the Registers and will be printed in different lines.

Title: 8086 Assembly Program to print String “Hello World, Good Morning, Have Good Day” in 3 different lines

Description: If you have seen your first Hello World ALP, this assembly program prints STRING from .DATA, but in three different lines. So, here we’ll be saving 3 different Strings to .DATA, and then print them one by one. From our first Hello World ALP hope you have understood the use of mnemonics to display the string and the interrupt request.

Mastering Concepts of Database and Database Terminologies

What is Database?

Database is a repository for collection of related data or facts stored so that it is available to many users for different purposes. The content of database is obtained by combining data from all the different sources in an organization, so that data are available to all users and redundant data can be eliminated or at least minimized. A database contains a collection of related items or facts arranged in a specific structure called Data and Information.

Databases are used in every part of day-to-day life. Examples of common database use include: depositing or withdrawing money from a bank, making a travel reservation, accessing a library catalog, buying something from the internet via a web page, etc.