• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:49
CET 21:49
KST 05:49
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy7ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289
Community News
Weekly Cups (March 16-22): herO doubles, Cure surprises3Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool48Weekly Cups (March 9-15): herO, Clem, ByuN win42026 KungFu Cup Announcement6BGE Stara Zagora 2026 cancelled12
StarCraft 2
General
Potential Updates Coming to the SC2 CN Server What mix of new & old maps do you want in the next ladder pool? (SC2) Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Weekly Cups (March 16-22): herO doubles, Cure surprises Weekly Cups (August 25-31): Clem's Last Straw?
Tourneys
WardiTV Mondays Sparkling Tuna Cup - Weekly Open Tournament World University TeamLeague (500$+) | Signups Open RSL Season 4 announced for March-April WardiTV Team League Season 10
Strategy
Custom Maps
[M] (2) Frigid Storage Publishing has been re-enabled! [Feb 24th 2026]
External Content
The PondCast: SC2 News & Results Mutation # 518 Radiation Zone Mutation # 517 Distant Threat Mutation # 516 Specter of Death
Brood War
General
mca64Launcher - New Version with StarCraft: Remast Gypsy to Korea BGH Auto Balance -> http://bghmmr.eu/ Soulkey's decision to leave C9 How much money terran looses from gas steal?
Tourneys
[ASL21] Ro24 Group C [Megathread] Daily Proleagues [ASL21] Ro24 Group B 2026 Changsha Offline Cup
Strategy
What's the deal with APM & what's its true value Fighting Spirit mining rates Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Darkest Dungeon Nintendo Switch Thread Stormgate/Frost Giant Megathread General RTS Discussion Thread Path of Exile
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread Things Aren’t Peaceful in Palestine
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books Movie Discussion! [Manga] One Piece
Sports
Cricket [SPORT] 2024 - 2026 Football Thread Formula 1 Discussion Tokyo Olympics 2021 Thread General nutrition recommendations
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1658 users

The Big Programming Thread - Page 236

Forum Index > General Forum
Post a Reply
Prev 1 234 235 236 237 238 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2013-01-31 20:24:06
January 31 2013 20:09 GMT
#4701
On February 01 2013 04:47 omarsito wrote:
Show nested quote +
On February 01 2013 04:29 tec27 wrote:
On February 01 2013 04:03 omarsito wrote:
Sup ya'll, im currently busy with a C function thats supposed to copy a matrix to another matrix at another memory adress. So I coded my function and tested it, with both matrix having the same sizes. And right now the code copies fine until the last two values where it just doesnt want to copy them.


void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = *(srcmat+rowcount*i+j);
}

I'd be very happy if someone could help me out, im also open for feedback to changes for the function that doesnt involve memcopy!

This looks fine to me, but is there any particular reason you're doing the pointer math instead of just using them like the arrays they are?

e.g.:
void matrixcopy(int** dest, int** src, int row_count, int col_count) {
int row, col;
for(row = 0; row < row_count; row++) {
for(col = 0; col < col_count; col++) {
dest[row][col] = src[row][col];
}
}
}

No particular reason only other then that it felt easier from the beginning. I tried using your solution but I get a segmentation fault when it tries to call the function. Could it be because i call the function with the call matrixcopy(rmat, imat, ROWCOUNT, COLUMNCOUNT); where rmat is the destination matrix and imat source matrix


The segfault could be because you are using rmat and imat as a solid string of data, and the matrixcopy is expecting the first ROWCOUNT values as addresses to each row of data. Matrix copy is literally expecting an array of arrays, where your first implementation is a straight copy of data, where the amount of data is ROWCOUNT*COLUMNCOUNT.


hmmm, perhaps thats the problem anyhow... Maybe you need to account for the size of the pointers in the array in your first function to fix your off-by-two-error. What is the value of ROWCOUNT and COLUMNCOUNT?

yawn, here's another version (that assumes sizeof(int) and sizeof(int*) are the same, don't take this as true for all systems)...

void matrixcopy(int* dest, int* src, int row_count, int col_count) {
int length = sizeof(int *) * row_count + sizeof(int) * row_count * col_count; //calculate the number of bytes the transfer
int* end_ptr = dest+length/sizeof(int);
while( dest < end_ptr) { //stop copying when you reach the end
*dest = *src;
dest++; //increments destination pointer by sizeof(int)
src++;
}
}


It's no better than your version, just my own take on the function. In fact, this is worse than the second version for a multitude of reasons. At least we can be sure the memory is contiguous
Any sufficiently advanced technology is indistinguishable from magic
ThatGuy
Profile Blog Joined April 2008
Canada695 Posts
January 31 2013 20:28 GMT
#4702
On February 01 2013 04:03 omarsito wrote:
Sup ya'll, im currently busy with a C function thats supposed to copy a matrix to another matrix at another memory adress. So I coded my function and tested it, with both matrix having the same sizes. And right now the code copies fine until the last two values where it just doesnt want to copy them.


void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = *(srcmat+rowcount*i+j);
}

I'd be very happy if someone could help me out, im also open for feedback to changes for the function that doesnt involve memcopy!


Your function looks fine, it could be that there is an error from the usage of it (perhaps it was called with erroneous row/column parameters?).
omarsito
Profile Joined June 2011
22 Posts
January 31 2013 20:30 GMT
#4703
On February 01 2013 05:04 RoyGBiv_13 wrote:
Show nested quote +
On February 01 2013 04:03 omarsito wrote:
Sup ya'll, im currently busy with a C function thats supposed to copy a matrix to another matrix at another memory adress. So I coded my function and tested it, with both matrix having the same sizes. And right now the code copies fine until the last two values where it just doesnt want to copy them.


void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = *(srcmat+rowcount*i+j);
}

I'd be very happy if someone could help me out, im also open for feedback to changes for the function that doesnt involve memcopy!


Fascinating...

the last *two* values? Is that an entire row, or is just the last two values in the row? Can you share where you are malloc'ing for these data?

I've never gotten that pointer assignment to every work in my own experience, for some reason or another, and I always end up using memcpy. If you want to optimize this a bit, you can use an intermediary 64-bit register if you are running this on your x86-64 pc. The compiler will probably optimize this anyway by unrolling the loop and using a register, but maybe not (you can check the assembly if you're crazy).


void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
register long temp;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = (temp = *(srcmat+rowcount*i+j));
}

Uh, im not using malloc if you meant that.

Also for your question, its the last two values, aka [2][2] and [2][3].

Here's the printed data from printf

+ Show Spoiler +

Examining imat:
memory at: 404100 contains value: 10000
memory at: 404104 contains value: 10001
memory at: 404108 contains value: 10002
memory at: 40410c contains value: 10003
memory at: 404110 contains value: 10100
memory at: 404114 contains value: 10101
memory at: 404118 contains value: 10102
memory at: 40411c contains value: 10103
memory at: 404120 contains value: 10200
memory at: 404124 contains value: 10201
memory at: 404128 contains value: 10202
memory at: 40412c contains value: 10203

Examining rmat:
memory at: 404140 contains value: 10000
memory at: 404144 contains value: 10001
memory at: 404148 contains value: 10002
memory at: 40414c contains value: 10003
memory at: 404150 contains value: 10100
memory at: 404154 contains value: 10101
memory at: 404158 contains value: 10102
memory at: 40415c contains value: 10103
memory at: 404160 contains value: 10200
memory at: 404164 contains value: 10201
memory at: 404168 contains value: 0
memory at: 40416c contains value: 0




Also i'll post the whole code while we're at it, its short so i hope it helps(it contains some code that isn used atm because its my homework for c)
+ Show Spoiler +


#include <stdio.h>
#define ROWCOUNT (3)
#define COLUMNCOUNT (4)

int imat[ ROWCOUNT ][ COLUMNCOUNT ];
char cmat[ ROWCOUNT ][ COLUMNCOUNT ];
double dmat[ ROWCOUNT ][ COLUMNCOUNT ];
int rmat[ ROWCOUNT ][ COLUMNCOUNT ];

void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = *(srcmat+rowcount*i+j);
}

int main()
{
int i; int j;
int * ip; char * cp; double * dp;

for( i = 0; i < ROWCOUNT; i = i + 1 )
for( j = 0; j < COLUMNCOUNT; j = j + 1 )
{
imat[ i ][ j ] = 10000 + 100*i + j;
cmat[ i ][ j ] = 10*i + j;
dmat[ i ][ j ] = 1.0 + i/100.0 + j/10000.0;
rmat[ i ][ j ] = 0;
};

printf( "\n Examining imat:\n" );
for( ip = &imat[ 0 ][ 0 ];
ip <= &imat[ ROWCOUNT - 1 ][ COLUMNCOUNT - 1 ];
ip = ip + 1 )
printf( "memory at: %lx contains value: %d\n", (unsigned long) ip, *ip );

printf( "\n Examining cmat:\n" );
for( cp = &cmat[ 0 ][ 0 ];
cp <= &cmat[ ROWCOUNT - 1 ][ COLUMNCOUNT - 1 ];
cp = cp + 1 )
printf( "memory at: %lx contains value: %d\n", (unsigned long) cp, *cp );

printf( "\n Examining dmat:\n" );
for( dp = &dmat[ 0 ][ 0 ];
dp <= &dmat[ ROWCOUNT - 1 ][ COLUMNCOUNT - 1 ];
dp = dp + 1 )
printf( "memory at: %lx contains value: %f\n", (unsigned long) dp, *dp );

/* Add a statement here to call your matriscopy function. */
matriscopy(rmat, imat, ROWCOUNT, COLUMNCOUNT);

printf( "\n Examining rmat:\n" );
for( ip = &rmat[ 0 ][ 0 ];
ip <= &rmat[ ROWCOUNT - 1 ][ COLUMNCOUNT - 1 ];
ip = ip + 1 )
printf( "memory at: %lx contains value: %d\n", (unsigned long) ip, *ip );

return( 0 );
}

magicmUnky
Profile Joined June 2011
Australia280 Posts
January 31 2013 20:54 GMT
#4704
Your code (as posted above) is pretty nice to read but please, for the love of all that is good, don't make redundant comments... if you can read the code and it is eminently clear what the code does (like incrementing a column in a for loop or "calling your function") then please don't put comments!
omarsito
Profile Joined June 2011
22 Posts
January 31 2013 21:08 GMT
#4705
Most of that code is built on their standard code, including all the comments. It's like a two week period where we're supposed to learn C from scratch which then will be used for some hardware so the teachers kinda have to point out exactly where everything is supposed to go
magicmUnky
Profile Joined June 2011
Australia280 Posts
January 31 2013 21:13 GMT
#4706
Yeah and in my humble opinion, teachers usually instill some really bad habits when it comes to commenting and such

It was exactly the same when I learnt C/matlab etc... they'd tell you to put comments everywhere but once you can actually write little programs that work (like yours), you realise that the comments just get in the way and are kind of a psychological stumbling block to debugging programs.

I now try to reserve comments for tricky functions and confusing sections of code... and it's made quite a difference to readability! :D
Phunkapotamus
Profile Joined April 2010
United States496 Posts
January 31 2013 21:16 GMT
#4707
On February 01 2013 05:28 ThatGuy wrote:
Show nested quote +
On February 01 2013 04:03 omarsito wrote:
Sup ya'll, im currently busy with a C function thats supposed to copy a matrix to another matrix at another memory adress. So I coded my function and tested it, with both matrix having the same sizes. And right now the code copies fine until the last two values where it just doesnt want to copy them.


void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = *(srcmat+rowcount*i+j);
}

I'd be very happy if someone could help me out, im also open for feedback to changes for the function that doesnt involve memcopy!


Your function looks fine, it could be that there is an error from the usage of it (perhaps it was called with erroneous row/column parameters?).


The error is here: *(destmat+rowcount*i+j) = (temp = *(srcmat+rowcount*i+j));

Use columncount, not rowcount. The stride is off by 1 for each iteration of row.
"Do a barrel roll"
Phunkapotamus
Profile Joined April 2010
United States496 Posts
January 31 2013 21:28 GMT
#4708
On January 30 2013 05:40 LukeNukeEm wrote:
Hi, im playing around with the Code Analysis tool provided by Visual Studio and noticed the following:
//Foo.h
class Foo
{
public:
int& operator [] (unsigned int i);
private:
int x[3];
};

//Foo.cpp
#include "Foo.h"

int& Foo::operator [] (unsigned int i)
{
return x[i];
}

//main.cpp
#include "Foo.h"

int main(void)
{
int x[3];
x[5]; // this gets detected
Foo foo;
foo[5]; // this does not
int *y = new int; // neither does this (no delete)
}

Are there any settings i can change to enable the code analysis tool to identify these errors?


"foo[5]" is not an error as the operator is overloaded. You aren't required to do anything with the value returned, so the analysis tool assumes that you're doing something valid.
"Do a barrel roll"
omarsito
Profile Joined June 2011
22 Posts
January 31 2013 21:29 GMT
#4709
On February 01 2013 06:16 Phunkapotamus wrote:
Show nested quote +
On February 01 2013 05:28 ThatGuy wrote:
On February 01 2013 04:03 omarsito wrote:
Sup ya'll, im currently busy with a C function thats supposed to copy a matrix to another matrix at another memory adress. So I coded my function and tested it, with both matrix having the same sizes. And right now the code copies fine until the last two values where it just doesnt want to copy them.


void matriscopy (int * destmat, int * srcmat, int rowcount, int columncount)
{
int i, j;
for (i=0; i<rowcount; i=i+1) /* rad-nr */
for (j=0; j<columncount; j=j+1) /* kolumn-nr */
*(destmat+rowcount*i+j) = *(srcmat+rowcount*i+j);
}

I'd be very happy if someone could help me out, im also open for feedback to changes for the function that doesnt involve memcopy!


Your function looks fine, it could be that there is an error from the usage of it (perhaps it was called with erroneous row/column parameters?).


The error is here: *(destmat+rowcount*i+j) = (temp = *(srcmat+rowcount*i+j));

Use columncount, not rowcount. The stride is off by 1 for each iteration of row.

Thanks, that helped!
Mstring
Profile Joined September 2011
Australia510 Posts
January 31 2013 21:31 GMT
#4710
On February 01 2013 06:28 Phunkapotamus wrote:
Show nested quote +
On January 30 2013 05:40 LukeNukeEm wrote:
Hi, im playing around with the Code Analysis tool provided by Visual Studio and noticed the following:
//Foo.h
class Foo
{
public:
int& operator [] (unsigned int i);
private:
int x[3];
};

//Foo.cpp
#include "Foo.h"

int& Foo::operator [] (unsigned int i)
{
return x[i];
}

//main.cpp
#include "Foo.h"

int main(void)
{
int x[3];
x[5]; // this gets detected
Foo foo;
foo[5]; // this does not
int *y = new int; // neither does this (no delete)
}

Are there any settings i can change to enable the code analysis tool to identify these errors?


"foo[5]" is not an error as the operator is overloaded. You aren't required to do anything with the value returned, so the analysis tool assumes that you're doing something valid.

He's talking about out of bounds array indices.
wherebugsgo
Profile Blog Joined February 2010
Japan10647 Posts
January 31 2013 22:55 GMT
#4711
any Germans here?

I'm looking to brush up on my German and practice some EECS while I'm at it.

So, I'm looking for good intro German texts on circuits, C, AI, and machine structure;

stuff like

Ulaby & Maharbiz, Circuit, 2nd edition
Patterson + Hennessey
Kernighan + Ritchie
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
Last Edited: 2013-02-01 03:41:03
February 01 2013 03:30 GMT
#4712
Anybody here know anything about Windows 8/Windows Phone development? I have no idea even what language it is, though I suspect it's probably Java. Any good book recommendations? Or web sites that would give a crash course on it? Thanks!

Edit: Ok, I managed to find that you can compile apps on the Windows Phone using C++, C#.NET, and VB.NET. I still need some kind of introduction of some sort. Any advice on how to get started would be greatly appreciated.
phar
Profile Joined August 2011
United States1080 Posts
February 01 2013 08:10 GMT
#4713
You can get translated copies of P&H for like $30 on amazon. If you don't know technical German it might be a bit daunting though... very different from conversational stuff.
Who after all is today speaking about the destruction of the Armenians?
heishe
Profile Blog Joined June 2009
Germany2284 Posts
February 01 2013 11:52 GMT
#4714
On February 01 2013 07:55 wherebugsgo wrote:
any Germans here?

I'm looking to brush up on my German and practice some EECS while I'm at it.

So, I'm looking for good intro German texts on circuits, C, AI, and machine structure;

stuff like

Ulaby & Maharbiz, Circuit, 2nd edition
Patterson + Hennessey
Kernighan + Ritchie


Especially K&R should have a translated version. At least... it would surprise me if it didn't.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
h3r1n6
Profile Blog Joined September 2007
Iceland2039 Posts
February 01 2013 11:58 GMT
#4715
On February 01 2013 17:10 phar wrote:
You can get translated copies of P&H for like $30 on amazon. If you don't know technical German it might be a bit daunting though... very different from conversational stuff.



Half of a German computer science book is English words anyway. Or just German versions of the exact same English word.
CountChocula
Profile Blog Joined January 2011
Canada2068 Posts
February 01 2013 12:03 GMT
#4716
I saw this website advertising a C++ Grandmaster Certificate. Is it a good way of getting hired for your first job/learning the programming language in lieu of formal education i.e. university/college? It says it's free, so that's why I think it looks promising.

http://www.cppgm.org/index.html
Writer我会让他们连馒头都吃不到 Those championships owed me over the years, I will take them back one by one.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 01 2013 12:06 GMT
#4717
On February 01 2013 07:55 wherebugsgo wrote:
any Germans here?

I'm looking to brush up on my German and practice some EECS while I'm at it.

So, I'm looking for good intro German texts on circuits, C, AI, and machine structure;

stuff like

Ulaby & Maharbiz, Circuit, 2nd edition
Patterson + Hennessey
Kernighan + Ritchie


you should use lisp for AI, not C!
i don't know if you should, but i wanted to make a pun
conspired against by a confederacy of dunces.
heishe
Profile Blog Joined June 2009
Germany2284 Posts
February 01 2013 12:35 GMT
#4718
On February 01 2013 21:03 CountChocula wrote:
I saw this website advertising a C++ Grandmaster Certificate. Is it a good way of getting hired for your first job/learning the programming language in lieu of formal education i.e. university/college? It says it's free, so that's why I think it looks promising.

http://www.cppgm.org/index.html


Yeah, if you write a fully C++11 compliant compiler, it'll get you hired in lots of places if you show it to people who know what they're talking about. Problem is, that course is a pretty elegant way to spent hundreds (more likely thousands) of hours with. I'd be very surprised if anyone in that course reaches the project goal.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
adwodon
Profile Blog Joined September 2010
United Kingdom592 Posts
Last Edited: 2013-02-01 14:40:02
February 01 2013 14:29 GMT
#4719
On February 01 2013 21:03 CountChocula wrote:
I saw this website advertising a C++ Grandmaster Certificate. Is it a good way of getting hired for your first job/learning the programming language in lieu of formal education i.e. university/college? It says it's free, so that's why I think it looks promising.

http://www.cppgm.org/index.html


No that course is not good for you. It is a course for serious professionals who want to know how to write compilers, which for 99% of software engineers isn't necessary information, you need a basic understanding of what's going on for sure but you don't need to have written your own compiler.

If you have zero experience you aren't going to complete that course in any kind of realistic time frame. Go check out places like EdX and Coursera for good, undergrad level courses to give you a better idea of what you need to know, they are also free.

As a side note though, don't expect to get a job doing C++ without a degree. It's not going to happen. Sure someone will point to an exception, but that person wouldn't have been asking that kind of question, they would've got a job because they already had more experience than a graduate doing their own projects (ie 3+ years of serious stuff).

Go to university, or do it as a hobby.

EDIT:
Just a little snippet from that courses FAQ that you might want to take to heart:

This is a "Grandmaster" level programming course for world-class senior software engineers. It will be very difficult and mind-bending work.
adwodon
Profile Blog Joined September 2010
United Kingdom592 Posts
Last Edited: 2013-02-01 14:44:22
February 01 2013 14:43 GMT
#4720
On February 01 2013 12:30 enigmaticcam wrote:
Anybody here know anything about Windows 8/Windows Phone development? I have no idea even what language it is, though I suspect it's probably Java. Any good book recommendations? Or web sites that would give a crash course on it? Thanks!

Edit: Ok, I managed to find that you can compile apps on the Windows Phone using C++, C#.NET, and VB.NET. I still need some kind of introduction of some sort. Any advice on how to get started would be greatly appreciated.


MSDN is the place to go.

http://msdn.microsoft.com/en-us/library/windows/apps/br211386.aspx

You can do HTML 5 ( HTML5, CSS3+JS), C# or C++.

If you have no experience, don't go with C++.
C# has a tonne of a material around about it, you'll probably find an answer to any question you have but using HTML5 is probably your safest option.

Mind if I ask what your goal is? It would give us a better idea of what tools you will need.
Prev 1 234 235 236 237 238 1032 Next
Please log in or register to reply.
Live Events Refresh
OSC
18:00
OSC Elite Rising Star #18
SteadfastSC144
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 401
LamboSC2 272
SteadfastSC 144
UpATreeSC 123
ProTech6
StarCraft: Brood War
Britney 12444
Calm 2298
ggaemo 72
Backho 54
soO 23
Super Smash Bros
C9.Mang0134
Other Games
summit1g5861
tarik_tv3950
Grubby2073
Beastyqt661
mouzStarbuck421
shahzam345
ArmadaUGS117
Organizations
Other Games
gamesdonequick2243
BasetradeTV53
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• intothetv
• Kozan
• sooper7s
• Migwel
• AfreecaTV YouTube
• LaughNgamezSOOP
• IndyKCrew
StarCraft: Brood War
• RayReign 27
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 1574
• WagamamaTV704
• lizZardDota272
League of Legends
• TFBlade780
Other Games
• Scarra1001
• imaqtpie763
• Shiphtur135
Upcoming Events
Replay Cast
3h 11m
WardiTV Team League
15h 11m
Big Brain Bouts
20h 11m
Fjant vs SortOf
YoungYakov vs Krystianer
Reynor vs HeRoMaRinE
RSL Revival
1d 13h
Cure vs Zoun
herO vs Rogue
WardiTV Team League
1d 15h
Platinum Heroes Events
1d 18h
BSL
1d 23h
RSL Revival
2 days
ByuN vs Maru
MaxPax vs TriGGeR
WardiTV Team League
2 days
BSL
2 days
[ Show More ]
Replay Cast
3 days
Replay Cast
3 days
Afreeca Starleague
3 days
Light vs Calm
Royal vs Mind
Wardi Open
3 days
Monday Night Weeklies
3 days
OSC
4 days
Sparkling Tuna Cup
4 days
Afreeca Starleague
4 days
Rush vs PianO
Flash vs Speed
Replay Cast
5 days
Afreeca Starleague
5 days
BeSt vs Leta
Queen vs Jaedong
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2026-03-25
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
BSL Season 22
CSL Elite League 2026
CSL Season 20: Qualifier 1
ASL Season 21
Acropolis #4 - TS6
RSL Revival: Season 4
Nations Cup 2026
NationLESS Cup
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

2026 Changsha Offline CUP
CSL Season 20: Qualifier 2
CSL 2026 SPRING (S20)
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.