A Simple C Program

A simple C program basically consists of the following parts − Preprocessor Commands Functions Variables Statements & Expressions Comments Basic structure of C program #include

 Above shown the basic structure of C program. For every program we have to write above mention basic structure. How to write or print We can write or print … Read more

Cookies in JavaScript

What are Cookies? Normally, Cookies store user information in small text files.on your computer. A cookie is a piece of data that is stored on your browser to be accessed by your browser. Cookies are also saved as key/value pairs. Cookies will remember information about the user, when server forgets everything about the user after … Read more

HTML Document Object Model (DOM) in JavaScript

The DOM is an object-oriented representation of the website pages, which is modified with a scripting language JS. The DOM stand for Document Object Model. When a web page is loaded, the browser creates a DOM of the page. The DOM model is a tree of Objects. The DOM is a platform that allows programs and scripts to … Read more

Strict Mode in JavaScript

JAVACRIPT’s strict mode, introduced in ECMAScript 5, is a way to opt in to a restricted variant of JAVACRIPT. Strict mode is not just a subset: it intentionally has different semantics from all other normal code. Some browsers does not support strict mode. To run strict mode code with different behavior from browsers need to test for support for … Read more