Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialnfs
35,526 PointsIs there any chance that treehouse will provide C programming language courses soon enough?
Thanks in advance...
3 Answers
Steven Parker
231,248 PointsTreehouse won't be teaching "C".
If you search the forum history, you'll find this question has been asked many times before, and sometimes answered by the staff. Here's the gist of those responses:
While languages like "C" and "C++" are certainly popular, they tend to be used for things other than the web technologies which are the focus of Treehouse.
codegay
14,410 PointsNafis Fuad I believe C and C++ are low level languages which are complex to learn and only now a days used to build complex stuff like a whole new operating system. But for app dev and web dev and even game dev, you can do so by using a more simple high level language; example ruby and python
Hello world written in C++
#include <iostream>
int main()
{
std::cout << "Hello world!\n";
return 0;
}
Hello world written in python
print("Hello world.")
Hello world written in ruby
puts "Hello World."
nfs
35,526 PointsThank you, guys.