I want to write a C application that runs on Symbian mobile OS. I don't know where to start. Is there any library files available or any SDK or IDE available for it?
Asked
Active
Viewed 1,011 times
-1
-
Go to http://www.google.com. Enter "Symbian SDK" in the search box. – tdammers Aug 06 '10 at 08:46
-
I "improved" spelling and grammar, but I'm not sure this question is narrow enough in focus to stand. I'll let it stew for a while before voting to close, to see if it gains some focus or has an answer more interesting than "let me google that for you". – RBerteig Aug 06 '10 at 09:00
3 Answers
3
http://wiki.forum.nokia.com/index.php/How_do_I_start_programming_for_Symbian_OS%3F
Architecture http://developer.symbian.org/wiki/images/9/95/OpenCppEnv.png:
Developer community tutorial link.

Praveen S
- 10,355
- 2
- 43
- 69
2
Just like to elaborate on the previous post. Symbian supports POSIX libraries via Open C. Mobile apps almost always have a UI. Depending on your objective, you might check out Qt on Symbian too.
-hth John

John
- 476
- 2
- 5
- 15
-
-
1When we write a program, we want to solve a problem. The original question does explicit say in C. I am simply suggesting a UI is a natural next step. C and C++ work well together. Allow the original author to access/reuse the C APIs and leverage Qt's UI and application framework. – John Aug 09 '10 at 20:15
1
You should download the Nokia Qt SDK (http://qt.nokia.com/downloads/) . This allows you to write applications in C/C++ (without having to learn the Symbian flavor of C++).

sparkymat
- 9,938
- 3
- 30
- 48