I am trying to get the present working directory in ubuntu using the following code:
#include<stdio.h>
#include<unistd.h>
#include<sys/syscall.h>
#include<stdlib.h>
int main(){
char *str = malloc(100);
str=(char *) syscall(SYS_getcwd);
printf("%s",str);
return 0;
}
However, I am getting a segmentation fault and am unable to print the pwd. Kindly help me what is the right way to use sys_getcwd