Results 1 to 6 of 6

Thread: Is anyone know what is pseudo code?

  1. #1
    Join Date
    Dec 2009
    Posts
    59

    Is anyone know what is pseudo code?

    Hi All,

    I just started to learn C programming language. I need you help to know about the 'pseudo code'. I don't know what is "pseudo code" and it's use. Is this any special type of programming code?. I have referred many book for this, got nothing. If you are aware about the "pseudo code" very well, then please let me know the same. Your help would be greatly appreciable.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: Is anyone know what is pseudo code?

    In Programming the pseudo code is one special method which is used for to describe a algorithm without reference to a programming language in particular. There is no real convention for the pseudo code. The functional programming tends to voluntarily rid of too many technical details of the imperative programming for to focus on the essential algorithms. Therefore listings of programs written in functional language like a bit of pseudo-code.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Re: Is anyone know what is pseudo code?

    Writing in pseudo code can often take well to the extent of the difficulty of the implementation of the algorithm, and develop a structured approach in the construction thereof. Indeed, the descriptive aspect to describe more or less detail the algorithm, thereby allowing to start with a broad vision and temporarily ignore some complexities, which does not offer direct programming. I hope from this you will get some idea about the 'pseudo code'.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Re: Is anyone know what is pseudo code?

    Hi friend,

    Following is the example of "pseudo code":
    Code:
    <variable1> = <expression1>
    
    if <condition1>
        do stuff1;
    else
        do other stuff2;
    
    while <condition2>
        do stuff3;
    
    for <variable2> from <first value> to <last value> by <step>
        do stuff4 with variable2;
    
    function <function name>(<arguments>)
        do stuff5 with arguments;
        return something;
    
    <function name>(<arguments>)

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Re: Is anyone know what is pseudo code?

    Helli friend,

    No standard syntax for pseudo code exists. This is because pseudo code from any program isn't an program of type executable. Pseudo code resembles, but which can be compiled without errors. Pseudo code is a informal as well as compact algorithm for computer programming. But it is intended for human reading rather than machine reading. To write pseudo code can often take well for to the extension of the difficulty of the implementation of the algorithm.

  6. #6
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Is anyone know what is pseudo code?

    Hi,

    pseudo code is not the any programming language. It is nothing but our language which is used before coding of the program. See below:
    if H > 5
    then show a proper message as output

    else

    get the data from user.

Similar Threads

  1. Teredo tunneling pseudo-interface code 10 is affecting my usb
    By kelfro in forum Vista Hardware Devices
    Replies: 2
    Last Post: 14-09-2012, 04:05 PM
  2. Replies: 6
    Last Post: 19-08-2010, 11:22 AM
  3. What are Pseudo-classes and Pseudo-elements in CSS?
    By DANIEL 602 in forum Software Development
    Replies: 7
    Last Post: 30-01-2010, 04:41 PM
  4. Teredo Tunneling Pseudo-Interface and VPN Client
    By davie in forum Hardware Peripherals
    Replies: 4
    Last Post: 25-01-2009, 08:46 AM
  5. Teredo Tunneling Pseudo Interface not working in Vista
    By Daisyel in forum Vista Hardware Devices
    Replies: 1
    Last Post: 03-12-2007, 08:11 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,554,046.86342 seconds with 17 queries