From Fedora Project Wiki

m (just fixing links (mediawiki style))
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Programing==
== Creating and editing pages in the wiki ==


* [[introduction ]] : describes Wat is explained here about programing.
* [[Help:Wiki structure]] describes page naming guidelines, namespace usage, and categories.
* [[Goto Statment]]   : provides more details about goto statment in c programing
* [[Help:Categories]] provides more details about using categories.
* [[Guestions to be answered]] : GIves guestions to answer.
* [[Help:Editing]] describes headers, sections, syntax, and markup.
* [[Fedora Project:User pag]] defines the proper location for user pages.
* [[{{ns:4}}:User pages]] defines the proper location for user pages.
* [[Help:Talk]] describes the usage of Talk or Discussion pages.
* [[Help:Talk]] describes the usage of Talk or Discussion pages.


Additional help pages can be found in the [[mediawikiwiki:Help:Contents|MediaWiki Help]].


==Introduction==
== Other resources ==
Computer programming (often shortened to programming) is a process that leads from an original formulation of a computing problem to executable computer programs. Programming involves activities such as analysis, developing understanding, generating algorithms, verification of requirements of algorithms including their correctness and resources consumption, and implementation (commonly referred to as coding[1][2]) of algorithms in a target programming language. Source code is written in one or more programming languages. The purpose of programming is to find a sequence of instructions that will automate performing a specific task or solving a given problem. The process of programming thus often requires expertise in many different subjects, including knowledge of the application domain, specialized algorithms and formal logic.


Related tasks include testing, debugging, and maintaining the source code, implementation of the build system, and management of derived artifacts such as machine code of computer programs. These might be considered part of the programming process, but often the term "software development" is used for this larger process with the term "programming", "implementation", or "coding" reserved for the actual writing of source code. Software engineering combines engineering techniques with software development practices.
* [[Communicating and getting help]] describes additional resources for users of Fedora.
* [[Join]] describes the many ways to get involved with Fedora Project.


==Goto statment==
[[Category:Wiki policy]]
 
A goto statement in C programming language provides an unconditional jump from the goto to a labeled statement in the same function.
 
NOTE: Use of goto statement is highly discouraged in any programming language because it makes difficult to trace the control flow of a program, making the program hard to understand and hard to modify. Any program that uses a goto can be rewritten so that it doesn't need the goto.
 
Syntax:
The syntax for a goto statement in C is as follows:
 
==Questions to be answered==
 
Scope of goto in C
 
1. Demonstrate forward and backward jumps using goto in C.
 
2. Observe the scope of label.
 
3. Use goto statement in one function and try to transfer control to another function by  defining label in that function and note down the scope.
4. Use goto statement in one file and try to transfer control to another file by defining label in that file.
 
5. Use goto statement outside a block and try to refer to label defined inside the block. A block can be any group of statements enclosed with curly braces. Try this for both forward and backward branching.

Latest revision as of 12:06, 24 March 2019

Creating and editing pages in the wiki

Additional help pages can be found in the MediaWiki Help.

Other resources