Please somebody give me a explanation of how this program cause segmentation fault and how can i exploit it?
#include<iostream>using namespace std;void a();void b();void a(){ cout<<"Hello World\n"; b();}void b(){ cout<<"Hello World\n"; a();}int main(){ a(); return 0;}