C passing string by reference to function

C passing string by reference to function


#include<stdio.h>

void fun1(int **iptr)
printf("%d ", **iptr); //shows value


void fun2(char **sptr)
//printf("%s", **sptr); shows segmentation fault
printf("%s", *sptr); //shows string


int main()
char *str = "Hi";
int *x, a = 10;

x = &a;
fun1(&x);
fun2(&str);
return 0;



Can anybody explain in short what's going on?
might be silly but i asked it anyway...






Because printf is expecting a pointer as a parameter for the %s specifier and a non-pointer for %d

– Eugene Sh.
Sep 7 '18 at 17:28


printf


%s


%d






Your two codes are not similar. Make a string variable, set a pointer to its address, use exactly as the pointer to int variable. Then compare behaviour.

– Yunnosch
Sep 7 '18 at 17:30






char **sptr ... printf("%s", **sptr); shows segmentation fault --> A good compiler will warn of how this code is bad before you even need to run the code. Save yourself time and enable all compiler warnings. What warning do you get?

– chux
Sep 7 '18 at 17:35



char **sptr ... printf("%s", **sptr); shows segmentation fault






thanks for help..im new to this..

– Sagar Gujarati
Sep 7 '18 at 17:54




1 Answer
1



When printing an integer, you pass the integer itself to printf.
When printing a string of characters, you pass the address of the first character. In other words, you pass the pointer to the string.


printf



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)