Brows C & C++ Programs and Projects 1. C Program to solve “Bubble Sorting Algorithm example” Complete C language Program of algorithm. 2.C Program of “Analog Clock ” complete program, create analog clock in c language.
Continue reading »
Online JavaScrip(); Class 1. Introduction of JavaScript and JScript. 2. What Kinds of Things Can You Do with JavaScript and JScript? 3. How to Integrating JavaScript with HTML. 4. Create Your First JavaScript”Hello World” program. 5. Learn Different Ways to Integrate JavaScript into Your HTML Pages. 6. Learn about JavaScript and Case Sensitivity. 7. Learn how to Placing JavaScripts in the Head Section of the HTML page. 8. Learn how...
Continue reading »
JavaScript is a computer language specially designed to work with Internet browsers. It lets you create small programs called scripts and embed them inside Hypertext Markup Language (HTML) pages in order to provide interactive content on your Web pages. JScript is Microsoft’s implementation of JavaScript. In addition to running within Internet Explorer, Microsoft also provides a version of JScript that can be used as a desktop scripting language with the...
Continue reading »
Bubble Sorting Algorithm example ——————————– Program takes a hardcoded array of certain numbers and sorts them using a simple bubble sort algorithm that I put into a function. I used a macro insteadof a function for the swapping b/c it’s easier to read and understand. The program outputs a beforeand after of the elements of the array to show that it actually did something. ***************************************************/ #include <stdio.h> #include <stdlib.h> #define SWAP(a,b) { int t;...
Continue reading »
# include <graphics.h> # include <dos.h> # include <stdio.h> # include <conio.h> # include <math.h> # include <process.h> void frame(); void star_in(int, int, int, int, int, float, float); void line_at_angle(int, float, int); void beep(int, int); void clear (int, int, int, int, int); void main() { int gdriver=DETECT,gmode,errorcode; initgraph(&gdriver,&gmode,”c:\tc\bgi”); errorcode=graphresult(); if(errorcode!=grOk) { printf(“ Graphics error %s”,grapherrormsg(errorcode)); printf(“ press any key to halt. “); exit(1); } struct time t; gettime(&t); int key,k=0;...
Continue reading »