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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.IO; |
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
out: fun.o main.o | |
gcc -o out fun.o main.o | |
fun.o: fun.c | |
gcc -c -std=c98 -pedantic -Wall -o fun.o fun.c | |
main.o: main.c | |
gcc -c -std=c98 -pedantic -Wall -o main.o main.c |
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
No. Name Amount Account | |
1 Ma Khaing Lay 400000 kyats https://www.facebook.com/khaing.lay.5680?fref=ufi | |
2 Mg Hman Gyi 20000 kyats https://www.facebook.com/mg.hmangyi.1?fref=ufi |
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
C# programming lessons | |
=============== | |
lesson 1-Hello World | |
lesson 2- Area Of Circle | |
lesson 3- Textbox porperties | |
lesson 4- Menu Form Login | |
lesson 5- Application launcher setup | |
lesson 6- Project installer | |
lesson 7- Type Conversation Variables Constants |
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<stdlib.h> | |
#include<time.h> | |
void delay(unsigned int mseconds); | |
int main( int argc, char *argv[]) | |
{ | |
FILE *fin,*fo; | |
if(argc!=3) |
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
//Programmer Dr. Aung Win Htut | |
//Sample program for Senior Inventor Class | |
#include<stdio.h> | |
#include<conio.h> | |
#include<stdlib.h> | |
#include<string.h> | |
#define RECORD_LENGTH 60 | |
int funArraySize(char *arr); | |
struct BUFFER splitTwoArray(char* arr, char ch); |
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<iostream> | |
#define BMW 0 | |
#define HONDA 1 | |
#define TOYOTA 2 | |
#define brands 3 | |
int mm[3]; |
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<iostream> | |
using namespace std; | |
void writeSpace(int n); | |
void drawHline(); | |
void drawSpace(); | |
void drawUI(int x, int y , char ch); | |
int main() |
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<stdlib.h> | |
#include<time.h> | |
#include<iostream> | |
int cards[52]; | |
int cards2[52]; | |
int s=1; | |
using namespace std; |
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 <SoftwareSerial.h> | |
SoftwareSerial WinHtutBT(7, 6); | |
int i = 0; | |
void setup() { | |
Serial.begin(9600); | |
pinMode(2,OUTPUT); | |
pinMode(3,OUTPUT); | |
pinMode(4,OUTPUT); |