• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:56
CEST 01:56
KST 08:56
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Balance hotfix patch 5.0.16b (July 16)35Reynor: GSL Loss Wasn't About Preparation Format16[IPSL] Spring 2026 Grand Finals - This Weekend!5Weekly Cups (July 6 - 12): Protoss strike back12BSL Season 22 Full Overview & Conclusion8
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) [D] Wireframe Casting Removed Clem: "I don't have that much hope in Blizzard" Reynor: GSL Loss Wasn't About Preparation Format Is the larve respawn broken?
Tourneys
Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026 GSL CK #5 Race War RSL Revival: Season 6 - Qualifiers and Main Event HomeStory Cup 29
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together Mutation # 532 Nuclear Family
Brood War
General
Etiquete rules in Asl? BW General Discussion Recent recommended BW games Recommended FPV games (post-KeSPA) Pros Debate: Zerg Unfairly Nerfed? (ASL S22 map)
Tourneys
Escore Tournament - Season 3 Small VOD Thread 2.0 [IPSL] Spring 2026 Grand Finals - This Weekend! [Megathread] Daily Proleagues
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies
Other Games
General Games
General RTS Discussion Thread Path of Exile Nintendo Switch Thread Beyond All Reason Stormgate/Frost Giant Megathread
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread The Games Industry And ATVI Russo-Ukrainian War Thread UK Politics Mega-thread YouTube Thread
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Movie Discussion! Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Series you have seen recently...
Sports
2024 - 2026 Football Thread MLB/Baseball 2023 McBoner: A hockey love story Tennis[sport] Formula 1 Discussion
World Cup 2022
Tech Support
Simple Questions Simple Answers FPS when play League Of Legend on laptop How to clean a TTe Thermaltake keyboard?
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
Poker (part 2)
Nebuchad
The Experiences We Want and …
TrAiDoS
An Exploration of th…
waywardstrategy
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Evil Gacha Games and the…
ffswowsucks
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7322 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
PSISTORM Gaming Misc
23:00
FSL playoffsTeamLeague STvsASH
Freeedom30
Liquipedia
The PiG Daily
22:00
Best Games of SC
ByuN vs Clem
MaxPax vs TBD
Serral vs ByuN
GgMaChine vs Bunny
PiGStarcraft535
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft535
ViBE234
Vindicta 30
SpeCial 27
StarCraft: Brood War
Leta 18
Dota 2
NeuroSwarm137
Counter-Strike
summit1g3577
Super Smash Bros
hungrybox295
Mew2King145
Heroes of the Storm
Trikslyr76
Other Games
gofns9802
tarik_tv5432
shahzam1163
XaKoH 164
ToD133
PPMD25
Organizations
Other Games
gamesdonequick1664
BasetradeTV182
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 18 non-featured ]
StarCraft 2
• musti20045 38
• davetesta31
• RyuSc2 16
• Response 1
• LaughNgamezSOOP
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• sooper7s
• Migwel
StarCraft: Brood War
• Pr0nogo 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21742
Other Games
• Shiphtur790
• tFFMrPink 9
Upcoming Events
Replay Cast
4m
CranKy Ducklings1
RSL Revival
9h 4m
Clem vs Lambo
Scarlett vs Cure
CranKy Ducklings
10h 4m
Epic.LAN
13h 4m
IPSL
16h 4m
Dragon vs Hawk
RSL Revival
1d 9h
Classic vs Trap
herO vs SHIN
Sparkling Tuna Cup
1d 10h
OSC
1d 13h
IPSL
1d 16h
Bonyth vs Ret
WardiTV Weekly
2 days
[ Show More ]
Monday Night Weeklies
2 days
PiGosaur Cup
4 days
The PondCast
4 days
Replay Cast
5 days
CrankTV Team League
5 days
Replay Cast
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-07-13
HSC XXIX
Eternal Conflict S2 E2

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
Escore Tournament S3: W3
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026

Upcoming

ASL S22 SEASON OPEN Day 1
Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
CSLAN 4
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E3
Logitech G Connect 2026
StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
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.