advertising
related pastes to tag 'cpp'
- 1228357 - Wildcard String Matching / By Ai: c card useful string snippet cpp code wildcard wild match matching utility
-
- //Wildcard String matching, wrote by Aikar@windower.net
- bool strmatchwc(const char* pattern, const char* string, bool Escape = false)
- {
- static int i = 0;
- if(!pattern || !string) return false;
- if(!*pattern || !*string)
- {
- if(!*pattern && !*string)
- 959597 - Alain de Callafon c program cpp abc math.h math ax2bxc
- preview unavailable
- 921843 - Hero - The Game: project c cpp code
-
- #include<stdio.h>
- #include<conio.h>
- #include<process.h>
- #include<stdlib.h>
- #include<dos.h>
- static int min=1;
- static int sec=59;
- 879195 - sanjin: cpp bjam linkage
-
- # the static library c
- #
- # c.cpp looks like this:
- # int __declspec(dllexport) test()
- # {
- # return 9;
- # }
- lib c
- 879152 - sanjin: cpp bjam linkage
-
- # the static library c
- #
- # c.cpp looks like this:
- # int __declspec(dllexport) test()
- # {
- # return 9;
- # }
- lib c
- 655918 - Alain de Callafon c program cpp abc math.h math square
- preview unavailable
- 655684 - Alain de Callafon c program cpp abc math.h math ax2bxc
- preview unavailable
- 655561 - Alain de Callafon: c program cpp abc math.h math ax2bxc
-
- //abc-formule( eerste programma)
- #include <iostream>
- #include <math.h>
- using namespace std;
- int main ()
- {