C Programming

Welcome to C Programming lesson!

prog5

Here are the lessons:

Lesson1-Introduction.pdf

Lesson2-Variable-DataType.pdf

Lesson3-Control Structure(if-switch).pdf

Lesson4-Control Structure(Loop).pdf

Lesson5-Function.pdf

Lesson6-Array.pdf

Lesson7-String.pdf

Lesson8-Pointer.pdf

Lesson9-User define datatype.pdf

Lesson10-File.pdf

Hope you will become a good programmer!

Thanks

var http = require('http');

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World!');
}).listen(8080);
var http = require('http');

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World!');
}).listen(8080);