And now we will discuss about operators in C. Generally we have three types of operator=====>>>>> 1 Unary … More
Month: June 2017
A program to take a integer and print that
Now we will start how to take a number and print in a program . #include<stdio.h> #include<conio.h> void … More
Defining integer and a program who accept a integer from key board
Let us start learning using of data types=====> Simple C program which accept a integer– #include<stdio.h> #include<conio.h> void … More
Variable and data type in c
Using variables. C variable is nothing but it is just a name is given to any data type. … More
Simple c question or some simple program on printf
I am writing some questions you have to go to code them. Questions. 1 write a program to show … More
Structure of a hello word program.
structure of a simple program==>> #include<stdio.h> #include<conio.h> void main() { clrscr(); printf(“hello word”); getch(); } This program arising a lot … More