[Updated 11th May 2013] C Programming For all [Part I][Part II]

Search This thread

mhrsolanki2020

Senior Member
Jan 15, 2012
585
378
Welcome to C programming for all tutorial..
Hello there,
I am going to start again from the chapter on Operators. As i had pretty much messed up last time.. If you have some doubts or queries you can pm me or post here or can mail me at the email below, check out post#2 for index of my chapters
For Help/inquiry/mistake in explaination/tips/ideas/etc :
mhrsolanki2020@gmail.com
 
Last edited:

mhrsolanki2020

Senior Member
Jan 15, 2012
585
378
Everything is on my website, all at one place, you can go there www.mhrsolanki2020.in , or you can directly go to the index of this tutorial over here : Index Page

Part I Flowcharts

Chapter 1 (Introduction To FlowCharts)
Chapter 2 (Basics Of FlowCharts)
Chapter 3 (Variables And Constants In FlowCharts)
Chapter 4 (Operators)
Chapter 5 (Subroutines And Off-Page-Connector)


Part II
C Programming Begins!!(a preface)
Chapter 1(Theory on C programming)
Chapter 2
Chapter 3 (Video TUT on Data Types)
Chapter 4 (Video TUT on Printf & Scanf and some programming terminologies)
The C Programming Tutorial is back!!!
Operators [Part 1]
 
Last edited:

mhrsolanki2020

Senior Member
Jan 15, 2012
585
378
FAQ about FlowChart:

1) Can we use the Input box, processing box etc etc in any order? or is it specific that the input should be first then the processing box or Something??
->http://xdaforums.com/showpost.php?p=32921528&postcount=33 By - wcypierre

2) When will be Next Chapter be posted?
-> I am a college student. I do it in my free time. And i do have a loads of free time , but then i cant just make tuts 24 x 7 , So have patience and wait fr the posts. You can just subscribe to this post, as i Reply a new post in this thread stating "OP updated with Chapter" and you will recieve the notification :D

3)My computer is running Windows 7 (64-bit), DJGPP doesnt work?
->Yeah , djgpp supports only windows 7 (32-bit) plz visite here PellesC
By leventccc - http://xdaforums.com/showpost.php?p=33638489&postcount=69

4) What are keywords?
-> The C language have some words reserved for programming. This words are called keywords. Eg: main, int, char , float, if , else, etc..
For more information visit Here

5) What is Syntax?
-> The way of writing the instruction of any programming language is called Syntax. Its like the general form .

The syntax for declaring a variable is:
Code:
[B]DATA-TYPE[/B] [I]variable-name[/I];
Where int,float,char are the data type, and then you have a variable name of your choice and then a semi-colon(;).


The syntax for IF statement is:
Code:
if(condition)
{
codes;
}
 
Last edited:

Mattix724

Senior Member
Sep 26, 2010
4,321
2,526
Phoenix, Arizona
OnePlus 8

Attachments

  • uploadfromtaptalk1350198243971.jpg
    uploadfromtaptalk1350198243971.jpg
    19.8 KB · Views: 23,581

ingenious247

Senior Member
Oct 15, 2011
1,988
705
Thanks for this. Perfect timing for me as I am in the process of learning Java as well.

Sent from my SGH-T999 using xda premium
 

mackay508

Senior Member
Dec 26, 2010
133
6
Ness
This will be very useful :) Now i can slowly learn how to work on Computers and Android, give me something to do after work. Will you be posting them as a downloadable file?
 

Top Liked Posts