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 7414259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:04:25+00:00 2026-05-29T07:04:25+00:00

I have this program, which I want to understand the following output: #include <stdio.h>

  • 0

I have this program, which I want to understand the following output:

#include <stdio.h> 
void fastSwap (char **i, char **d) 
{ 
  char *t = *d; 
  *d = *i; 
  *i = t; 
} 
int main () 
{ 
 char num1[] = "hellohello"; 
 char num2[] = "classclass"; 
 fastSwap ((char**)&num1,(char**)&num2); 
 printf ("%s\n",num1); 
 printf ("%s\n",num2); 
 return 0; 
} 

The output will change only sizeof(void*) chars, instead of the entire array.

why does this happen?

&num1 is char**, isn’t it?

  • 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-29T07:04:26+00:00Added an answer on May 29, 2026 at 7:04 am

    &num1 is char** isn’t it?

    It’s char (*)[11]. The fact that you casted to char ** clobbered the warnings of the compiler.

    What you are doing is thoroughly undefined behavior. You can’t make num1 point somewhere else because it doesn’t point anywhere to begin with: it’s an array, not a pointer.

    EDIT

    As Paul R points out, here’s what is probably happening. The first sizeof(char *) characters of each string are interpreted as a pointer and then those are swapped. What happens essentially depends on the size of the pointer on your implementation. It’s quite interesting, however I’m pretty sure it still qualifies as undefined.

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

Sidebar

Related Questions

I have this program in c++: #include <iostream> using namespace std; int main() {
I have written this program, which sorts some ints using a functor: #include<iostream> #include<list>
Consider this problem: I have a program which should fetch (let's say) 100 records
I have a program which does a system call: latex somefile.latex This runs ok,
I have a GUI program, which would call a cmd in this GUI program.
I have a simple script which is used to start another program. This other
Okay, I have this program and I don't want more than one instance of
Here, i have a program, which takes arguments (how surprising...). I want him to
I have a vector of Student objects which I want to sort using #include
I have this program that should execute a piece of code base on the

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.