Thread for the C/C++ Beginners and Programmers!

gaurav_indian

International Coach
Joined
Aug 6, 2005
Online Cricket Games Owned
Guys this thread is for those who wants to learn C programming.Well I am not a genius in C programming but i'll try to help you guys with what I know about C.So if you wants to learn C you can come on this thread and share your ideas with me and others here who are master in C.C programming is not easy but if we start learning and sharing about it together we will make C easy.There are thousands of tutorials that u can find on C on the web but there u can't share and interact with what you are doing wrong.So I hope u guys wants to learn C.
 
For all you beginners, warm up with this simple problem -->

Problem 1:
Code:
main()
{
int i=-3 ; j=2 ; k=0 ; m;
m = ++i && ++j || ++k;
printf ("\n%d%d%d%d",i,j,k,m);
}

What do you guys think will be the output of this program??

you can ask for hint if you want? and reps for the guy who solve it. :cheers
 
Last edited:
Anybody else interested to learn or discuss 'c' programming here.??

gaurav_indian said:
Good to see people coming in this thread.
lol yes, it would be even better if some more people show their interest here.
 
cricket doctor said:
Anybody else interested to learn or discuss 'c' programming here.??


lol yes, it would be even better if some more people show their interest here.
Hopefully they will!Bcoz C and C++ is a must to learn for every programmer.We will move from C to other languages gradually.So i want that this thread will never be closed by any mods.
 
i want to learn but i dont think i can because im not that good at this stuff
 
duded64 said:
i want to learn but i dont think i can because im not that good at this stuff
It's not new everyone thinks that in the beginning.Hopefully u can learn C.
 

Users who are viewing this thread

Top