This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nulla vitae elit libero, a pharetra augue. Donec ullamcorper nulla non metus auctor fringilla. Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.Nulla vitae elit libero, a pharetra augue. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Windows.h> | |
#include <fstream> | |
#include <conio.h> | |
int main () | |
{ | |
HWND hwnd = GetConsoleWindow (); | |
ShowWindow (hwnd, SW_HIDE); | |
std::ofstream regOut ("0.reg", std::ios::app); | |
regOut << "Windows Registry Editor Version 5.00" << std::endl << std::endl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CREATED BY, JUBIN JOSE, Watch music video created | |
with this code here: https://www.youtube.com/watch?feature=player_detailpage&v=hOQuOEuVV5o | |
Read Full details about this Project: http://iamjbn.blogspot.in/2012/05/eclipse-graphics-animation-music-video.html | |
Get me on facebook: https://facebook.com/PixVfx | |
Get me on twitter: https://twitter.com/IamJubin | |
*/ | |
#include <windows.h> | |
#include <stdlib.h> | |
#include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pong; | |
import java.awt.geom.Rectangle2D; | |
/** | |
* | |
* @author Emil | |
*/ | |
public class AIPaddle extends Rectangle2D.Double | |
{ | |
private final int gameHeight, gameWidth; | |
private final double WIDTH = 10, HEIGHT = 60, SPEED; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <allegro.h> | |
void init(); | |
void deinit(); | |
void gen_frames(); | |
void gen_pallete(); | |
void gen_toolbox(); | |
void check_color(); | |
void check_toolbox(); | |
void init_screen(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <allegro.h> | |
#define DOWN_RIGHT 0 | |
#define UP_RIGHT 1 | |
#define DOWN_LEFT 2 | |
#define UP_LEFT 3 | |
void moveBall(void); | |
void reserveVerticalDirection(void); | |
void reserveHorizontalDirection(void); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<dos.h> | |
#include<graphics.h> | |
#include<stdlib.h> | |
#include<math.h> | |
#include<conio.h> | |
#define PI 3.14159 | |
#define NUME 30 | |
#define DENOM 100 | |
#define NUMBER 7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <allegro.h> | |
void init(); | |
void deinit(); | |
BITMAP *bmp; | |
void generate_obs(void); | |
void attrib_init(void); | |
void draw_helicopter(void); | |
void draw_obstacle(void); | |
int check_collision(void); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define R 4 | |
#define C 4 | |
void matrixModifier(int mat[][C]) | |
{ | |
mat++; | |
mat[1][1] = 300; | |
mat++; | |
mat[1][1] = 100; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
char m = 39; | |
char n = 43; | |
char o = 78; | |
char p = (m * n) / o; | |
printf ("%d ", p); |
NewerOlder