C program to perform basic arithmetic operations which are addition, subtraction, multiplication and division of two numbers. Numbers are assumed to...
In this program you can input a string and print it on the screen.
#include<stdio.h>
#include<conio.h>
void main()
{
char str[100] ={'p','c','w','o','r','l','d','l','i','f','e'};
...
In this program you will learn about to take input to the variables and print their values. The values are depends on the input .
#include<stdio.h>
#include<conio.h>
void...