JS Home

[col grid=”2-1 first”]
JavaScript
[/col]
[col grid=”2-1″]

JavaScript is the scripting language of the Web.

All modern browsers supports HTML

JS tutorial will teach you JavaScript from basic to advanced.

[/col]


Learn JavaScript by Doing Practical

<!DOCTYPE html>
<html>
<head>
  <script>
     function func() {
       document.getElementById("para").innerHTML = "Hi JS";
     }
  </script>
</head>
<body>
  <p id="para"></p>
  <button type="button" onclick="func()">Click Me</button>
</body>
</html>

Edit Yourself »

Start learning JavaScript now.


JavaScript Quiz Test

Test your HTML skills at c4learn!

Start JavaScript Quiz!


JavaScript Examples

We have listed JavaScripy tutorials in each chapter, You can edit those examples to see what’s happening.

About Team

1. Pritesh Taral

Pritesh Taral holds an Engineering degree in Computer Science from Pune University and now currently working in well known MNC as Java and Front End Developer.

In 2009, Pritesh Started Blogging as hobby. Now he is writing articles on wide verity of topics. Articles are generally based on programming and on the Computer Tricks. He is one of the Professional Blogger from India.

You can connect with Pritesh on Twitter, Facebook, YouTube and Google Plus. Or send him an email at pritesh [at] c4learn [dot] com

2. Suraj Taral

suraj
Brother of Pritesh and Computer science student having deep knowledge of Programming and computer Hardware.

About Help

Content Contribution Help :

If you are expert in any technical or non-technical subject and you are willing to help internet community, then you can write your tutorial and share with us to be published on c4learn.com

Please use our email address webmaster@c4learn.com to send us your tutorials.

Spelling Mistakes and Grammar :

If you find any spelling or grammar mistake while reading any of our article then please please send us mail at webmaster@c4learn.com so that we can correct those mistakes.

Errors can be found in -

  1. Tutorials
  2. Programs
  3. Newsletter

Linking our site :

If you like our articles and way of writing tutorials then you can also link our site on your website by copying the following HTML code -

<a href="https://www.c4learn.com/">Tutorials & References</a>

About Privacy Policy

The privacy policy for c4learn can be described in the following statements -

  1. We do collect few personal information from our users when they subscribe to us for newsletter
  2. Security settings protect the misuse of sensitive information

Personal User Information :

We do not collect information other than email from the user. But our analytic tool captures your ip address,location and screen resolutions for our reference

All the tutorials are available free of cost, you are free to view these tutorials at any moment of time

For any questions about this privacy statement, please contact at webmaster@c4learn.com

About Copyright

By using c4learn.com you agree to the following -

Copyright Information

All pages and graphics on this Web site are the property of c4learn.com.

Pages, code or other content from c4learn may not be redistributed or reproduced in any way, shape, or form without the written permission of c4learn.

Failure to do so is a violation of copyright laws.

All the logos, and trademarks on this site are property of their respective owners.

Guarantees

c4learn is provided without guarantee of any kind. There are no guarantees that use of the site will not be subject to interruptions with or without any notice.

Should you object any content or become dissatisfied with c4learn.com in any way, your only recourse is to immediately discontinue use of c4learn.com.

c4learn may contain inaccuracies or errors. c4learn.com makes no guarantees regarding the accuracy of the site or its contents.

If you discover that the site or its contents contains errors, please contact us at webmaster@c4learn.com so these can be corrected.

User Agreement :

While using this site, you agree to have read and accepted all the information on this page.

About Advertising

1. Google Analysis Report :

[box]7.5 lac pages viewed every month[/box]

OriginPercent
India54.70 %
United States12.20 %
United Kingdom8.00 %
Pakistan5.10 %
Australia1.20 %
Others18.8 %

Who should advertise ?

If you want to advertise on c4learn.com then you should be business person in the following area so that our readers can take interest in your advertisement.

Web HostingWeb DesiginingSEO
Domain RegistrationSoftware DevelopmentHardware Development
Software toolsSoftware UtilitiesOnline Business
Technical SupportsCertification ExamsBooks and Magazines

Advertisement Pricing :

Text LinePrices
1 Line upto 20 characters / Month$50
1 Line upto 20 characters / 6 Months$250
1 Line upto 20 characters / 12 Months$500

*All the Link ads are placed in the right sidebar of the site and across all the sections of the site.

Link Building :

Paid links would be given a rel=nofollow attribute, according to standard Google search engine guidelines.

File Handling in C

NoTopic
17.1Introduction to File Handling in C Programming
17.2Type of Streams | FILE structure and FILE pointer
17.3Types of Files : Text | Binary
17.4Opening and Defining FILE
17.5File Operations : Open a File | File Opening Modes
17.6File Operations : Close a File | End of File (feof / EOF)
17.7Character Input/Output : Getc | Fgetc
17.8Character Input/Output : Putc | Fputc
17.9Character Input/Output : Fgets | Fputs
17.10Formatted Input/Output : Fprintf | fscanf
17.11Direct Input/Output : Fwrite | Fread
17.12Random Access : Ftell | Rewind | Fseek
17.13Error Handling : Possible Ways
17.14Database Operation : Add Record | Display Record
17.15Database Operation : Modify Record | Append Record
17.16Database Operation : Delete Logically | Physically
17.17File Operation Functions : fflush | rename | remove