Posts

Showing posts with the label C

Types Of Operating System In Detail !!!

Image
Types Of Operating System - Technopedia!!! Types Of Operating System : 1. Batch Operating System 2. Multiprogramming Operating System 3. Time Sharing Operating System 4. Multiprocessor System 5. Clustered Operating System 6. Distributed Operating System 7. Network Operating System 8. Real Time Operating System Types Of Operating System In Detail !!! 1. Batch Operating System Batch system process a collection of jobs,called batch. Batch is a sequence of user jobs. Jobs is a predefined sequence of commands, programs and data that are combined into a single unit. Each job in the batch is independent other jobs in the batch. A User can define a job control specification by constructing a file  with a sequence of commands. Batch monitor is used to implement batch processing system.batch monitor is also called kernel. Kernel resides in one part of the computer main memory. The memory allocator managed the main memory. B...

C Program For Addition, Subtraction, Multiplication, Division Of Two Numbers!!

Image
C Program For Addition, Subtraction, Multiplication, Division Of Two Numbers!! in c programming we can apply arithmetic operations like addition, subtraction, multiplication, division. Let say we take two values of integer type which applied by user. When we perform division of two integer values then answer will be in integer form. For Ex : if we perform 5/2 than we get answer 2. if we want to get proper answer 2.5 then we need to do explicit conversion which is known as typecasting. Recommend Articles For More Information : Machine Learning Technology in Software Engineering Trending Pieces Of Technology You Should Know About!!! CONCEPT OF DBMS!! Phases Of Compiler In System Programming!!!! C Program For Addition, Subtraction, Multiplication, Division Of Two Numbers!! Difference between a monolithic and micro kernel? Difference Between The Procedure Oriented Language and Object Oriented Language. What Is Inheritance In C++? Types Of Inheritance...

Basic Program Of C Language For Print Hello!!

Image
Basic Program Of C Language For Print Hello!! We can practice for C language in turbo c++ application and reliable for practice of C. we will write a basic program of C for print Hello. So, First of all in every  C program we have to write this two sentences.       #include<stdio.h>       #include<conio.h> These are two header files, first is stdio.h it means standard input-output header files which handles your programs printf and scanf statements. second is conio.h it means console input-output header files which handles clrscr() and getch() commands in program. clrscr() : clrscr() is used for clear output screen from previous program output. getch() : getch() is used for get all data we write in program, without getch program can not run. Recommend Articles For More Information : Machine Learning Technology in Software Engineering Trending Pieces Of Technology You Should Know About!!! CO...