Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6885265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:36:47+00:00 2026-05-27T05:36:47+00:00

Here are 2 different versions of a program: this Program: #!/usr/bin/ksh printmsg() { i=1

  • 0

Here are 2 different versions of a program:

this

Program:

#!/usr/bin/ksh

printmsg() {
        i=1
        print "hello function :)";
}
i=0;
echo I printed `printmsg`;
printmsg
echo $i

Output:

# ksh e
I printed hello function :)
hello function :)
1

and

Program:

#!/usr/bin/ksh

printmsg() {
        i=1
        print "hello function :)";
}
i=0;
echo I printed `printmsg`;
echo $i

Output:

# ksh e
I printed hello function :)
0

The only difference between the above 2 programs is that printmsg is 2times in the above program while printmsg is called once in the below program.

My Doubt arises here: To quote

Be warned: Functions act almost just like external scripts… except
that by default, all variables are SHARED between the same ksh
process! If you change a variable name inside a function…. that
variable’s value will still be changed after you have left the
function!!

But we can clearly see in the 2nd program’s output that the value of i remains unchanged. But we are sure that the function is called as the print statement gets the the output of the function and prints it. So why is the output different in both?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:36:48+00:00Added an answer on May 27, 2026 at 5:36 am

    When you use backticks (or $(…)), you execute it in a subshell.

    That is, a new shell is started (which inherits from the current one) and then exists.

    Edit: I checked your link, if you read the bottom of it, the very last section, you’ll see this explained.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is some dprofpp -I output, for almost the same program on different input
Here is a C# program that tries Marshal.SizeOf on a few different types: using
This is similar to (but different from) this question . Here is some simple
Here are two different questions but I think they are related. When using Git,
By 'view' here I mean different combinations of properties of the model, not the
Here is an example to get different parts of a filename bash-3.2$ pathandfile=/tmp/ff.txt bash-3.2$
Here's the information according to the official documentation : There are four different pairs
Here's my scenario: I need to make three or four calls to different WCF
Here's my previous question about switching C callstacks. However, C++ uses a different calling
I have 8 different XAML DataTemplates that are all very similar. Here are 2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.