Category: Programming
Swap in C #include<stdio.h> int main() { int x,y,z; x=5; y=7; printf(“Before x=%d y=%d\n”,x,y); z=x; x=y; y=z;…
#include <windows.h> #include <GL\glut.h> void myInit (void) { glClearColor(0.0,0.0,0.0,0.0); // sets background color to white // sets…
https://www.ibm.com/developerworks/library/os-weka1/ http://www.programcreek.com/2013/01/a-simple-machine-learning-example-in-java/ http://www.cs.umb.edu/~ding/history/480_697_spring_2013/homework/WekaJavaAPITutorial.pdf
Actually we use this method to split string from a big sentence using regex. https://howtoprogramwithjava.com/string-manipulation/
https://www.ntu.edu.sg/home/ehchua/programming/java/J3a_OOPBasics.html
Lectures: About OpenGL colors: http://www.cs.brandeis.edu/~cs155/OpenGL%20Lecture_02.pdf https://en.wikibooks.org/wiki/OpenGL_Programming/Basics/Color Setup: https://openglprojects.com/setting-up-opengl-in-windows-linux-mac/ Tut: http://www.lighthouse3d.com/tutorials/glut-tutorial/ http://ogldev.atspace.co.uk/www/tutorial03/tutorial03.html https://www3.ntu.edu.sg/home/ehchua/programming/opengl/CG_Introduction.html Vid: https://www.youtube.com/watch?v=xCRzpNd5k3Y Projects: http://www.openglprojects.in/2015/08/bubble-shooter-game-computer-graphics-programs-in-c.html#gsc.tab=0…
Recent Comments