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<conio.h> | |
| #include<malloc.h> | |
| struct node | |
| { | |
| int data; | |
| struct node *link; | |
| } NODE; | |
| void push(int); |
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 <stdlib.h> | |
| #include <stdio.h> | |
| #include <conio2.h> | |
| #include <stdbool.h> | |
| #include <time.h> | |
| #define N_OBJ 10 | |
| typedef struct { | |
| float life, | |
| money, |
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
| /* | |
| * File: CS150_2.cpp | |
| * Author: Kostis Maninakis, maninak 2273 | |
| * email: adior8otos at google | |
| * | |
| * Created on November 18, 2013, 4:51 PM | |
| */ | |
| #include <cstdlib> | |
| #include <iostream> |
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<conio.h> | |
| void Convert(int,long); | |
| void Printer(int); | |
| void main() | |
| { | |
| long Number=0,x=0,Multiplier=1000000000; | |
| textcolor(GREEN); | |
| clrscr(); | |
| printf("\nCoverting The Numeric Number to Words"); |
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<conio.h> | |
| void Convert(int,long); | |
| void Printer(int); | |
| void main() | |
| { | |
| long Number=0,x=0,Multiplier=1000000000; | |
| textcolor(GREEN); | |
| clrscr(); | |
| printf("\nCoverting The Numeric Number to Words"); |
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
| /* | |
| John H. Conway's Game Of Life | |
| By Gerardo V. Lozada, M.S., P.E.E. (2013) | |
| Borland C/C++ Free Commandline Tools | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <conio.h> | |
| #include <alloc.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
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <graphics.h> | |
| #define SAFE 1 | |
| #define NOT_SAFE 0 | |
| #define TRUE 1 | |
| #define FALSE 0 |
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
| // Game Code in C++ | |
| #include<stdio.h> | |
| #include<glut.h> | |
| #include<stdlib.h> | |
| #include<string.h> | |
| #include<time.h> | |
| #include<Windows.h> | |
| #include<math.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
| /* | |
| * Project: Draw Gradient to BMP | |
| * Author: Alexander Aigner | |
| * Creation Date: - | |
| * | |
| * Description: Gradient sample. | |
| * | |
| * Creates a Color gradient, saves the result to a BMP file and opens | |
| * the file in the default image viewer. | |
| * |
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
| //A pattern by MADAN LAL The FASTian | |
| #include<stdio.h> | |
| #include<conio.h> | |
| #include<windows.h> | |
| int main() | |
| { | |
| int pk,x; | |
| for(x=0;x<255;x++){ | |
| printf("%d:%c\n",x,x);} |