Code:
#include <windows.h>
#include <commctrl.h>
#include <stdio.h>
HWND hwndMain;
HWND hwndTab;
HINSTANCE hinst;
int oldTabPage;
int NumToPower(int num, int power)
{
if(power==1)
return num;
return num*NumToPower(num, power-1);
Leave a comment: