Posts

Showing posts from June, 2021

Operators In C & Types

 Operators In C {tocify} $title={ Table of Contents } Definition An Operator is a symbol, which specifies what action to be taken upon Operands. An expression is basically a combination of operands & operators that yields a single value in which operand may be a variable or constant  Example Syntax op1 + op2 Here + is the operator and op1 and op2 are the operands Types of operators Arithmetic Operators Relational Operators Logical Operators Bitwise Operators Assignment Operators Conditional Operators Special Operators Increment/Decrement Operators Arithmetic Operators Arithmetic operators perform arithmetic operations such as Addition, Subtraction, Multiplication, Division & Mod. Following table shows list of arithmetic operators : Operator Description + Addition - Substraction ...

if…else Statement in C

  if…else Statement in C {tocify} $title={ Table of Contents } if..else statement is a very powerful two-way decision making statement which allow the programmer to execute one set of statement (out of two) and another to ignore, depends upon the certain specified test-condition.  if evaluated to TRUE then the statement(s) inside the TRUE-Block are executed and the statement(s) inside the FALSE-Block are skipped/ignored; and execution continues with very first statement outside the if..else i.e. statement-x Otherwise, (if FALSE) the statement(s) inside the TRUE-Block are skipped/ignored and the statement(s) inside the FALSE-Block executed and execution continues with very first statement outside the if..else i.e. statement-x example 👉👉Program to find Greatest among two integers👈👈 #include<stdio.h> main() { int num1=50, num2=20; if(num1>num2) { printf(“\nNum1 is Greatest”); ...

Program to demonstrate gets() and puts() functions in C language

Image
  Program to demonstrate gets() and puts() functions in C language Program to demonstrate gets() and puts() functions in C language T oday i'm going to tell you about gets() and puts() functions in C language {tocify} $title={ Table of Contents } First we will include Header Files #include<stdio.h> #include<string.h> Declare integers which will be used while running the program to get the character and diaplay the characters. like: Data_type Variable_name1, Variable_name2, Variable_name 3, ........., Variable_nameN; For e.g. main() { char name1[30],name2[30]; } Here Sign Description char Character (Data_type) name1 Variable_name [30] Character Limit You can change the Value ...

Adjoint of Matrix In C Language

Image
  Adjoint of Matrix In C Language T oday i'm going to tell you about how to calculate the adjoint of matrix in C Language {tocify} $title={ Table of Contents } First we will include Header Files #include<stdio.h> #include<string.h> Declare integers which will be used while calculating the Adjoint of a Matrix. like: Data_type Variable_name1, Variable_name2, Variable_name 3, ........., Variable_nameN; For e.g. main() { int a11, a12, a13, a21, a22, a23, a31, a32, a33, b11, b12, b13, b21, b22, b23, b31, b32, b33,r11, r12, r13,r21, r22, r23, r31, r32, r33, c11, c12, c13, c21, c22, c23, c31, c32, c33 ; } Show a sample matrix . According to which one can add the values of the matrix in the next step. printf("\n Enter the value as described in the demo matrix below for 1st matrix"); printf("\n\n Let the first matrix be A matrix \n Therefore, matrix be in the form :"); printf("\n\n A11 \t A12 \t A13"); print...

How to Disable Selection Function on Blog

Image
How to Disable Selection Function on Blog                 One way to avoid copy-pasting your blog articles is to turn off the text selection function on the blog using css, why should you use css? Many script code to prevent posts on blogs from copy-paste or copy-paste using JavaScript, but this can still be done by disabling the javascript function in the browser you are using. Disable text selection  or block text on a blog or website using css, it is much safer than using javascript, besides using css it will not affect the loading of your blog. The use of this css code will disable the function of left-clicking on the text but it can still be done if we click on the link or url on the blog. To prevent your content or articles from being copied, you can also turn off the right-click function on the blog, for a more detailed tutorial, you can read the post below. Disabling selection function with css on blog  means that all text on you...

How to Get New Articles Indexed Fast by Google

Image
{tocify} $title={ Table of Contents } Having indexed articles is the dream of bloggers. But sometimes it's hard to do. We as bloggers find it difficult to optimize so that our articles can be indexed by search engines (Google). It is very important and must for an article to be able to be in search engine searches. But so that this can be realized, we have to do ways so that articles can enter Google searches There are many ways that can be used so that blog articles can be indexed by Google. From using external methods to using internal methods by using the tools provided by Google. In addition to thinking that articles can be indexed, you also have to think about ways so that articles that have been indexed don't just go to waste. You have to try so that indexed blog articles can be on the first page of search. All of these things are related to SEO, so you have to improve your SEO knowledge. It is very important for you to learn SEO from an early age. For the first stage you...