• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 07:18
CEST 13:18
KST 20:18
  • 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
[ASL22] Ro8 Preview: In A Tizzy9[ASL22] Ro16 Preview: Holy Diver5[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9
Community News
Weekly Cups (Sep 13-20): herO scores triple2BSL Season 238Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down1StarCraft open world shooter announced at BlizzCon101Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) Weekly Cups (Sep 13-20): herO scores triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool How do you feel about the StarCraft shooter announcement at BlizzCon 2026? The Death of Cheese: From a Professional Cheeser
Tourneys
Master Swan Open (Global Bronze-Master 2) Stellar Fest TWO the Moon (Dec 16-20) Sparkling Tuna Cup - Weekly Open Tournament 2026 GSTL Announcement RSL Revival: Season 6 - Qualifiers and Main Event
Strategy
[H] ZvP Mid-Late Game: Stalkers Collossi HT
Custom Maps
[M] (2) Frigid Storage
External Content
Mutation # 544 Double Trouble The PondCast: SC2 News & Results Mutation # 543 Enhanced Defenses Mutation # 542 The Ascended
Brood War
General
BSL Season 23 Bot on ladder screpdb: new Starcraft reporting tool PLAYzone Challenge - open offline tour in Prague BW General Discussion
Tourneys
[ASL22] Ro8 Day 2 PLAYzone Challenge - open offline tour in Prague [ASL22] Ro16 Group D [ASL22] Ro8 Day 1
Strategy
Cliff Jump Revisited (1 in a 1000 strategy) Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation
Other Games
General Games
Warcraft III: The Frozen Throne Nintendo Switch Thread Diablo IV Stormgate/Frost Giant Megathread EVE Corporation
Dota 2
Dota 2 Champions League Season 3 Begins April 25! Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Artificial Intelligence Thread Things Aren’t Peaceful in Palestine All you football fans (soccer)!
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! [Manga] One Piece Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Recent Gifted Posts
Blogs
Gaming Intensity, Problemati…
TrAiDoS
38 yo Retired SWE loo…
PurE)Rabbit-SF
Can Bots Beat Pros?? Starcr…
namkraft
[meme] I finally understa…
LUCKY_NOOB
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7129 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
WardiTV Invitational
11:00
WardiTV 10, Group B
IntoTheiNu 449
WardiTV231
ComeBackTV 138
Rex51
Liquipedia
The PondCast
10:00
Episode 110
CranKy Ducklings20
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko331
Rex 51
SHIN 5
StarCraft: Brood War
Britney 19126
Bisu 1192
Shuttle 394
Soulkey 370
Stork 189
Last 187
ggaemo 115
uThermal 106
Light 102
Mini 82
[ Show more ]
Dewaltoss 78
sorry 60
HiyA 58
firebathero 49
Barracks 49
soO 36
Sharp 29
ToSsGirL 29
Aegong 17
Free 12
Dota 2
Gorgc4960
XaKoH 500
League of Legends
JimRising 291
Counter-Strike
byalli779
kRYSTAL_156
markeloff69
edward41
Other Games
gofns50170
shoxiejesuss486
crisheroes283
Livibee113
Mew2King65
DeMusliM5
Pyrionflax0
Organizations
Dota 2
PGL Dota 2 - Main Stream11543
Other Games
gamesdonequick608
StarCraft: Brood War
Afreeca ASL 376
lovetv 12
[ Show 13 non-featured ]
StarCraft 2
• StrangeGG 65
• mYiSmile18
• CranKy Ducklings SOOP7
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos2164
Other Games
• WagamamaTV121
Upcoming Events
Replay Cast
12h 42m
Korean StarCraft League
1d 16h
CranKy Ducklings
1d 22h
GSL
2 days
Yamato Cup
3 days
Replay Cast
3 days
Afreeca Starleague
3 days
Soma vs Jaedong
WardiTV Weekly
3 days
Monday Night Weeklies
4 days
Sparkling Tuna Cup
4 days
[ Show More ]
Afreeca Starleague
4 days
Leta vs Soulkey
PiGosaur Cup
5 days
Kung Fu Cup
5 days
The PondCast
6 days
Liquipedia Results

Completed

Super Anchor Qualifying S3
Blizzard Classic Cup 2026
Big Dog Cup 2026 Div 1

Ongoing

ASL Season 22
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - GSA
Calamity Invitational
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5 - GSB
Acropolis #5 - GSC
BSL Season 23
SC4ALL II: Brood War
BSL 23: Non-Korean Championship
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Custodian Cup
Copium Cup
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #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.