In the previous post we learn about what is String.we know that string is a collection of two or more characters.In string we can store alphabet, digit and special symbols.
In this post we will learn what are the string functions.
String functions:
1.strcpy ( ):
This function is used to copy the source string into target string.
Syntax: strcpy(target string, source string);
Example:
void...
Tuesday, 11 December 2018
December 11, 2018
String function
Saturday, 8 December 2018
December 08, 2018
Program to get 1 string input and print it.
String:
String is a collection of two or more characters.
In the previous post we learn about what is string.and How it can be print.
Program to get one string input and print it.
#include<stdio.h>
#include<conio.h>
void main()
{
char text[50];
clrscr();
printf("type string");
scanf("%s",&text);
printf("string is = %s",text);
getch();
}
Explanation:
1. Void main():
This...
Friday, 7 December 2018
December 07, 2018
What is String
String:
String is a collection of two or more characters.
In string we can store alphabets digits and special symbols.
when we declare array of character type then it is called as string.
In C, character type array is used to store a string.
Declaration of String:
The declaration of string is similar like Array.
for declaring string we need to specify its size means maximum of how many characters...
Monday, 17 September 2018
September 17, 2018
what is WWW
In the previous post we learn about what is Web Browser and in this post we will learn What is WWW and What is the use of WWW.
WHAT IS WWW:
WWW is stand for world wide web.it is the universe of hypertext servers (HTTP servers) which are the servers that allow text, graphics, audio, video, sound file to be mixed together.The world wide web is a hypertext based system providing a uniform, user friendly...
Thursday, 9 August 2018
August 09, 2018
How to create table in HTML
In this post we will learn how to create a table in html in the previous post we already discuss about
What is table tag in html and in this tutorial we will learn how to create table iin html. html is the web based programming language.
For creating table we need to know what is <table> table tag and what is <td> and <th> tag in html.
<TR>:
<TR> tag is a table...
Tuesday, 7 August 2018
August 07, 2018
What is table tag in HTML
Table tag in html is the important part in HTML.In this post we will learn what is table tag in html and attributes of table tag in html.
What is table tag in html:
Table tag is used to create a table in html.
Table tag is a paired tag that start with <TABLE> and </TABLE>.
Table tag in html start with <TABLE> and end with </TABLE>
Table tag in html display the data in...
Sunday, 5 August 2018
August 05, 2018
What is marquee tag
Marquee is a tag in HTML.For using Marquee tag in HTML we need to know what is Marquee tag and how to use Marquee tag in HTML.
HTML Language is used for creating web pages for the world wide web.
In HTML a block of text is surrounded with tags.
In this post we will learn What is marquee tag and How to use marquee tag in HTML.
In the previous post we learn How to add background image in HTML.and...
Tuesday, 31 July 2018
July 31, 2018
How to print pattern in C
In the previous post we learn about Program for palindrome number in C and Sum of digits in C and in this post we will learn how to create pyramid, half of pyramid and patterns using *
We can create pyramid, half pyramid and patterns by using loops if, if else.
you need to have the basic knowledge of loops if...else ,while, do while, continue and break.
Program to print patterns and pyramids...
Monday, 30 July 2018
July 30, 2018
Sum of digits in C
In the previous post we learn about What is palindrome number and How to write a program for palindrome number.
In this post we will learn how to write a program for sum of digits in C.
Sum of digits means addition of two or more than two numbers for example number 456 will be 15.
456
4+5+6=15
Program for Sum of digits:
#include <stdio.h>
#include <conio.h>
int main()
{
...
July 30, 2018
Palindrome number in C
Here we will see what is palindrome number and how to write a program for palindrome number.
Palindrome number in C:
A palindrome number that remains the same when its digits are reversed like 323.
Below is the program for palindrome number:
#include <stdio.h>
#include <conio.h>
void main()
{
int n,num,rem,sum=0;
clrscr();
printf("Enter number");
...
Sunday, 4 February 2018
February 04, 2018
2d array in C
In the previous post we learn about what is array and what is one dimensional array.In this post we will learn what is two dimensional array.
What is Array:
Array is a collection of similar type of data type.
Array is used to store more than one values of same data type under a single variable name in a continuous memory location.
What is two dimensional Array:
Two dimensional array consist...