Skip to main content

Posts

Showing posts from August, 2020

How to Understand Repetition in C Language

 How to Understand Repetition in C Language  Loop Control Instructions: The programs that we have developed so far used either a sequential or a decision control instructions. In this article, we learn about loops, types of loops and structure of loops. So, Loops is….. In programming, we frequently need to perform an action over and over, often with variations in the details each time.  The versatility of a computer lies in its ability to perform a set of instructions repeatedly. This involves repeating some portion of the program either a specified number of times or until a particular condition is satisfied. This repetitive operation is done through a loop control instruction There is three-way to repeat a part of a program. They are: 1.       Using a while statement. 2.       Using for statement. 3.       Using do-while statement. Structure of loops: 1.    ...

Top Stories About Digital Marketing Tools

This Week Top Stories about Digital Marketing Tools: In this article, we learn about some important tools for digital marketing. which help to manage your website SEO analysis and also wonderful graphics for your blogs and websites. there are some tools and websites are given below ... 1.       Hub spot HubSpot offers a full stack of software for marketing, sales, and customer service, with a completely free CRM at its core. They’re powerful alone — but even better when used together. 2.       MOZ MOZ provides us to free or paid SEO tools and data to help you increase traffic, ranking and visibility in the search result. There are some important tools in MOZ like keyword research, backlink research, rank tracking and SEO toolbar. 3.       Google Analytics Google Analytics is a web analytics service offered by Google that tracks and reports website traffic, currently as a platform insi...

How Java differs from C and C++

How Java differs from C and C++ This appendix contains a description of most of the major differences between C, C++, and the Java language. If you are a programmer familiar with either C or C++, you may want to review this appendix to catch some of the common mistakes and assumptions programmers make when using Java. Pointers Java does not have an explicit pointer type. Instead of pointers, all references to objects— including variable assignments, arguments passed into methods, and array elements—are accomplished by using implicit references. References and pointers are essentially the same things except that you can’t do pointer arithmetic on references (nor do you need to). Reference semantics also enable structures such as linked lists to be created easily in Java without explicit pointers; merely create a linked list node with variables that point to the next and the previous node. Then, to insert items in the list, assign those variables to other node obj...

How to Download and Install Visual Studio for C Language

  Get to coding faster With faster project load times and performance improvements, you can get to working faster with your favourite languages such as C/C++, C#, Visual Basic, F#, Python, and more. Code editing, navigation, and debugging are made easier with features like XAML Edit & Continue, improved IntelliSense, enhanced code refactoring, live code analysis, and the ability to open any folder without needing projects or solutions. If you wish to use visual studio express it is available at… https://  www.visualstudio.com/vs/express/ after download and install the complete IDE, you should start the coding write your first program and compile and execute it, for compilation and execution stapes given below... Compilation and execution using visual studio express. Carry out the following steps to compile and execute programs using visual studio express: 1.        Start visual studio express from start | all program | Microsoft visual stu...

How To Download and Install Netbeans for C Language

  How To Download and Install Netbeans for C Language Netbeans is not a compiler. It is merely an IDE. Windows version can be downloaded from https:// www.netbeans.org Click on the download button and download the NetBeans IDE.  for developing C programs using NetBeans under windows, you would also have to install Cygwin software. Cygwin comes with GCC compiler. It is available at https:// www.cygwin.com after installing both of software install IDE and  GCC compiler set up all the files and compile the project, compilation and execution stapes are given below... Compilation and execution using NetBeans Carry out the following steps to compile and execute programs using NetBeans: 1.        Start NetBeans from start | All programs | NetBeans 2.        Select file | new project from the file menu. Select the project category as C/C++ and project type as C/C++ Application from the dialogue that pops up. ...

Next Big Thing in Digital Marketing World.

Digital Marketing:   Digital marketing  is the component of  marketing  that utilizes the  internet  and online-based  digital technologies such as  desktop computers ,  mobile phones  and other  digital media  and platforms to promote products and services The most important concepts are: Search Engine Marketing:  SEM is process of gaining website traffic by purchasing ads on a search engine.  SEM Platforms: Google Ad words, Bing ads, Yahoo: Search Ads. Social Media Marketing:  Social Media Marketing refers to the process of gaining traffic or attention through social media site. Popular social media network: Facebook, Instagram, YouTube. Search Engine Optimizations:  SEO stands for “search engine optimization” it is the process of getting traffic from the “free, organic”,” editorial “or “natural” search result on search engines. The following are the 3 different types of SEO techniques: Black h...

How to Use Conditional Instructions.

How to Use Conditional Instructions.  In C programs too, we must be able to perform a different set of actions depending on the circumstances. C has two major decision making instructions – the if-else statements and the switch statements. In this article, we learn about if-else statements, multiple if-else statements and nested if-else statements. a)     The if-else statements:-  C uses the keywords if and else to implement the decision control instruction. the general form of this statement looks like this:                if(this condition is true)                          statements1;                else                          statements2; the condition following the keyword if is always enclosed within a pair of p...

Basic Knowledge About Instructions and Operators in C Language.

Basic Knowledge About Instructions and Operators in C Language.            A Program is nothing but a set of instructions. The program behaves as per the instructions that we   give in it. Different instructions help us achieve different task in a program.                       In this article, we learn about Instruction, type of Instructions, Hierarchy of Operations and Associatively of Operators. a)       Type Declaration instructions :- This instruction is used to declare the type of the variable being used in the program. Any variable used in the program must be declared before it is used in any statement. The type declaration statement is written at the beginning of main () function.   Ex. Int   bas; Float rs, grosssal; Char name, code; a)       Arithmetic instructions:-   Arithmetic ins...

Best Practice For Variable, Constant And Keywords In C

Best Practice For Variable, Constant And Keywords In C      simply in the programming the alphabets, digits and special symbols when properly combined           form constants, variable and keywords .      A Constant is an entity that doesn't change, whereas, a variable is an entity that may change. A             keyword is a word that carries special meaning.      Keywords are the words whose meaning has already been explained to the C compiler.                                    Rule for Constructing Integer Constant: ๐Ÿ‘‰in integer constant must have at least one digit. ๐Ÿ‘‰it can be any zero, positive or negative. ๐Ÿ‘‰the allowable range for integer constant is -2147483648 to +2147483647.  Note: No commas and blanks are allowed and if no sign precedes,...