Skip to content

Instantly share code, notes, and snippets.

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;
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
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
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
#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)
@AungWinnHtut
AungWinnHtut / splitData.c
Last active November 18, 2017 08:03
how to split with special char in c
//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);
#include<stdio.h>
#include<conio.h>
#include<iostream>
#define BMW 0
#define HONDA 1
#define TOYOTA 2
#define brands 3
int mm[3];
@AungWinnHtut
AungWinnHtut / UIexample1.c
Created November 12, 2017 09:22
UIexample1 for my students
#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()
#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;
#include <SoftwareSerial.h>
SoftwareSerial WinHtutBT(7, 6);
int i = 0;
void setup() {
Serial.begin(9600);
pinMode(2,OUTPUT);
pinMode(3,OUTPUT);
pinMode(4,OUTPUT);