While Loop in C with Example

A while loop in C is used to execute and repeat a block of statements based on a certain condition. Also Read, C Program To Find Factorial of a Number with Example Syntex:-while(){ <statement Block>} while is the relational or logical expression that will have the value of true or false. When this statement is … Read more

For Loop Statement in C With Example

For loop statement in C is used to execute and repeat a block of statements based on a certain condition. It has the following form: Syntax:- for(<initial value>; <condition>; <increment>){ <statement block>} whereas the <initial value> is the kind of assignment expression that initializes the value of a variable.<condition> is a relational or logical expression … Read more

Create Captcha Code in HTML and Javascript

Hi friends, in this tutorial, you will learn how to create captcha code in HTML and Javascript. There are various ways to generate captchas such as Google ReCaptcha and other captchas etc. Also read, Google Maps Add Marker Using Maps Javascript API and HTML The logic of captcha code in HTML and Javascript First of … Read more

Google Maps Add Marker Using Maps Javascript API and HTML

Hi friends, in this tutorial, you will learn the example of google maps add marker using maps javascript API and HTML. As we all know that a marker is usually a point of something but in this case marker identifies a particular location on the Google map and is also referred to as an icon. … Read more