Help with functions - basics Programming by verrandhack … very new to programming so i still don't understand commands like str, file, value, void, readName, and so forth but… Re: Help with functions - basics Programming by rproffitt Rather than dive into c++ like that, try tutorials like we see at https://www.w3schools.com/cpp/cpp_functions.asp Re: Help with functions - basics Programming by jkon It seems that the issue has nothing to do with C++ or with functions. If you are new to programming why not try some tutorials in an easy accessible language (like JavaScript for example) and when you understand a few basics ( like null , functions , variables , loops , conditions ) move to a C++ tutorial for beginners ? Re: Help with functions - basics Programming by learnerya Starting from the basics, I have just started learning ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. …/status/1754172149378810118)**” (sic). My experience with GPT-4 plainly refusing commands and requiring 3-4 prompts to complete one simple task… Re: What does this mean? (Code Snip) Programming Software Development by digitig "COMMANDS" is mis-named. It's a wrapper for a … 3rd snippet populates an array with a whole pile of commands, one per line. The first couple look sensible: the command… commands Hardware and Software Linux and Unix by shama_kandy whats the use of less & more commands in shell programming??? can anyone help...... I hav read on net but i didnt get how to use it......... commands Hardware and Software Linux and Unix by mohanrachuri please tell me the commands to install various files in linux Re: commands on linux Hardware and Software Linux and Unix by JasonHippy …. The [B]/bin/[/B] directory typically contains programs/commands that are ran at boot-time. The [B]/usr… string together several calls to various 'simple' system commands/programs(using the output from one command as inputs …or a command/program, or even a string of commands/programs using pipes and redirection. Typically aliases only last… commands on linux Hardware and Software Linux and Unix by pucivogel … to program(apply) it on the terminal i know simple commands like ls, cd, mkdir and lots of others.Also can… I'm not so clear on the difference between sudo commands and user commands.Thanks. Re: commands on linux Hardware and Software Linux and Unix by rch1231 Hello, You need to look into a book on the shell (bash shell programming) and the difference between commands with and without sudo is that sudo executes the command as root. Re: commands on linux Hardware and Software Linux and Unix by packofsunshine Typing commands on linux is like running programs. For example: ls is input the same way as gedit. You can run your scripts files by making it executible with chmod +x, which then behaves like a command if I correctly understand what you're asking. commands for install win98se from boot floppy Hardware and Software Microsoft Windows by netfisher … I go from here please....I don't know the commands to type to install....dose the floppy format the drive… Commands for, Liberty Basic Programming Software Development by amentyct … basic, which is a lot like VB, but with diffrent commands. does liberty basic let you put in varables in its… Re: Commands for, Liberty Basic Programming Software Development by Sparkplug188 I checked out a book from the library called "Begining Programing for Dummies". I recommend this book because it goes over alot on the Liberty Basic program and its commands, variables, etc... etc... If you check it out you might like it and then again you might not. Commands tips and tricks general questions Hardware and Software macOS by Arthoes … being able to find online. What are some basic key commands I mean such as CMD+? and also how to boot… Commands in Komodo Edit for Python Programming Software Development by Vector_Joe … where I can find this information for these an similar commands? Thanks Joe Re: Commands in Komodo Edit for Python Programming Software Development by jlm699 … where I can find this information for these an similar commands?[/QUOTE] [URL="http://docs.activestate.com/komodo/5.0… Commands from dictionary Programming Software Development by scott_liddle … 0 line 0 -50 and interpret these into python drawing commands (this case would be a square). I'm totally stuck… Commands for Windows Hardware and Software Microsoft Windows by charles.klein Hi I am new to this forum & I would like to ask few questions. Does anybody have commands for Disk Part which can allow to create partition, Select partition, Format partition & lot of features which a normal user cannot do within Windows UI enviroment. Re: Commands for Windows Hardware and Software Microsoft Windows by Stuugie I'm not sure I follow, what do you mean by commands? If you want to do anything with partitions, you go into the Disk Management console. Re: Commands for Windows Hardware and Software Microsoft Windows by Reverend Jim … by typing just `help` then asking for help with specific commands like `help create` then `help create partition`. I could walk… Reading commands from an array Programming Software Development by ohnomis …; case 5: //move forward x number of spaces int steps = commands[ cmd++ ]; for ( int stepsTaken = 0; stepsTaken < steps; stepsTaken++ ) { switch…: How do you read in the second value in the commands 5, 5 and then process the next command, 4, and… Implementing a unix shell running commands Programming Software Development by ssimkhan …an assignment to implement a unix shell and run commands using java. commands include read file, copy file, remove file …the threads. Below is a suggestion and code for individual commands: [B]Suggestion[/B] The purpose of this assignment …norm!), parses it (breaks it up into its constituent commands), either starts a new thread to handle each of … How to put internal Shell Commands in NASM? Programming Software Development by gallantmon1 …gt;", 0x00 cmdMaxLen db 255 ;maximum length of commands strOsName db "GeoLiz", 0x00 ;OS details…[SEGMENT .bss] strUserCmd resb 256 ;buffer for user commands cmdChrCnt resb 1 ;count of characters strCmd0 resb 256 ;… Re: Reading commands from an array Programming Software Development by ohnomis … loop: [CODE] for ( int cmd = 0; commands[ cmd ] != 9; cmd++ ) { int steps = command[ ++cmd ]; switch ( commands[ cmd ] { ... } [/CODE] But won't this… Question about Database Commands Programming Software Development by Nothingman …" instance I instantiate Objects for holding all the database commands: [CODE] public Particijos (Particija particija) { //Constructor switch(… [/CODE] In each _accessKomandos Instance I create instances of database Commands: [CODE] public class AccessKomandos{ private readonly static OleDbConnection OleConn … Re: Reading commands from an array Programming Software Development by WaltP You need to change your increment: [code=c] case 5: //move forward x number of spaces int steps = commands[ ++cmd ]; [/code] This will increment [I]before[/I] you load [I]steps[/I], getting the number of steps. Re: Reading commands from an array Programming Software Development by ohnomis … braces to give it local scope, ie. [CODE] { int steps = commands[ ++cmd ]; } [/CODE] The error for this is now: [CODE] error… Re: Reading commands from an array Programming Software Development by vidit_X I think you can declare and intilialize steps after the function "processTurtleMoves" declaration. [code=c++] void TurtleGraphics::processTurtleMoves( const int commands[] ) { int steps=0; .... .. .. .... .. .. } [/code] This should solve the problem. And as WaltP said, use a prefix form rather than a postfix one.