Operator in C++

November 4, 2017|

C++ operator is a symbol that is used to perform mathematical or logical manipulations. C++ language is rich with built-in operators. Arithmetic Operators Operator Description + Addition – Subtraction * Multiplication / Division % Modulus Increment and Decrement Operators Operator Description ++ Increment −− Decrement Relational Operators Operator Description == [...]

Cohen-Sutherland Line Clippings

October 29, 2017|

  Cohen-Sutherland Line Clippings algorithm uses the clipping window as shown in the following figure. The minimum coordinate for the clipping region is (XWmin,YWmin)(XWmin,YWmin) and the maximum coordinate for the clipping region is (XWmax,YWmax)(XWmax,YWmax).   We will use 4-bits to divide the entire region. These 4 bits represent the Top, Bottom, Right, and [...]

HTML Basic Tags Examples

September 17, 2017|

HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with  and ends with . The visible part of the HTML document is between  and . Example     HTML Headings HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least [...]

Go to Top