code : -#include<stdio.h>#include<string.h>int main(){char str1 [] = "best"; char str2 [] = "bus"; printf("%s", strcat(str1, str2)); return 0;}In terminal -$ gcc strcat1.c -o strcat (without any errors)$ ./strcatoutput : -*** stack smashing detected ***: terminatedAborted (core dumped)
As explained by Ashiwini, Why did the strcmp results come as 1, 0? Will it be different for each case? Is it like true or false? Can you please elaborate on how the strcmp function works?
675 visits
Outline:ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচ (String Library Functions) ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচ কি হয় (What are string library functions) ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচৰ প্ৰকাৰ (Types of string library functions) -Strcpy -Strlen -Strcmp -Strcat
ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচ (String Library Functions) ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচ কি হয় (What are string library functions) ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচৰ প্ৰকাৰ (Types of string library functions) -Strcpy -Strlen -Strcmp -Strcat
Show video info
Pre-requisite