Skip to main content

Desclaimer

Disclaimer for codeeit

If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at tk2172001@gmail.com.

Disclaimers for www.codeeit.blogspot.com

All the information on this website - https://codeeit.blogspot.com - is published in good faith and for general information purpose only. www.codeeit.blogspot.com does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (www.codeeit.blogspot.com), is strictly at your own risk. www.codeeit.blogspot.com will not be liable for any losses and/or damages in connection with the use of our website.

From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.

Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.

Consent

By using our website, you hereby consent to our disclaimer and agree to its terms.

Update

Should we update, amend or make any changes to this document, those changes will be prominently posted here.

Comments

Popular posts from this blog

Loops in C programming.

Loops are very important concept in C language and any other programming language. Loops are important to convert the larger program to smaller ones. Loops are 'the sequence of statement which continues to execute until the desired condition is met.' There are 3 types of loops in C language : 1. for loop. 2. while loop. 3. do while loop. 1. for loop The syntax of for loop is " for(initialization;expression;increment/decrement)". For loop is also called as entry controlled loop , where we initialize statement, give condition, and update statement in a single line. The for loop statement will be executed until the condition evaluation is true. Whenever the condition fails the control skip the for loop. Flowchart of for loop. Simple program to print number from 1 to 10 using 'for loop'. #include <stdio.h> void main() { int i; for(i=0...

Basics of C language

Basics of C language C language is the most commonly used programming language. C language is invened by Dennis Ritchie. It is used in wide range of aaplications. Before C language there ware Assembly level language and Basic compiling programming language(BCPL). Assembly level language code is leanthy as compared to C language code, therefore C language is preffered over BCPL and Assembly level language. Basic Structure of C language Documentation Section Link Section Defination Section Global Declaration Section Main function Section Subprogram Section C program always starts with a include file. SYNTAX : #include filename where filename may be stdio.h, conio.h, math.h, string.h, etc. depending upon the operation to be performed in the program. Most commonly used is stdio.h , which stands for standard input output header file. math.h is used to perform mathematical operations in the program, similarly other...

Arithmetic Operations in C language

Arithmetic operations are addition, subtraction, multiplication ,division and modulus. All these operations can be performed in the C programming using arithmetic operators. Arithmetic operators are ( + , - , * , / ,%).Using these operators we can perform different types of operations. Program To add two numbers. #include <stdio.h> int main() { int a,b,c; printf("Enter the value of a :"); scanf("%d",&a); printf("Enter the value of b :"); scanf("%d",&b); c=a+b; printf("Addition of a and b is %d.",c); return 0; } Output : Enter the value of a :5 Enter the value of b :2 Addition of a and b is 7. In these program the first line "#include <stdio.h>" is the header file which is used for basic input and output in the program."int main()" here ...