Posts

C Program to Find Total of Even Integers

C Comments

C programming Comments are way of inserting remarks and reminders into a program without affecting its content. C Comments do not have a fixed place in program: the compiler treats them as though they were white space or blank characters … Read More

JavaScript Event

JavaScript Comments with Examples

Javascript supports two types of comments (JavaScript Comments). Double-slashes (//) tell javascript to ignore everything to the end of the line. You will see them used most often to describe what is happening on a particular line.

var x=5; // 
Read More