How do i run normal c/c++ programs on a symbian phone?

Shehzan

New member
Joined
Apr 20, 2011
Messages
0
Reaction score
0
Points
0
Hey,
I am a student and i have a Nokia E63 and i was wondering if it was in any way possible to run a c/c++ program and see the output on my phone.
I haven't heard of symbian c++ or anything like that. I'm talking about programs that you make using Turbo c++ compiler... For example, will it be possible to run a program with the following code directly on my phone as an exe or compile and run it from the source?

#include<iostream.h>
#include<conio.h>
int main()
{
cout<<"\nHello World";
getch();
}
 
Back
Top