C program to read file contents and count bytes using feof API
The function feof() tests the end-of-file indicator for the stream pointed to by stream, returning nonzero if … Read more
The function feof() tests the end-of-file indicator for the stream pointed to by stream, returning nonzero if … Read more
As we have seen in our another posts “How to create Shared Library in Linux ?” we … Read more
The post briefs above how you can convert byte Array to Hex values and print those on … Read more
The Java Native Interface (JNI) establishes a well-defined and platform-independent interface between the JAVA and Native C … Read more
Installing JAVA on ubuntu can be done using following easiest command. for Ubuntu 20.04, this command installs … Read more
In any ARM processor, total 16 registers are accessible in any operation Mode. Those registers are as … Read more
Below functions make sure we are safely and completely reading and writing from a file pointer fd, … Read more
getcwd, getwd, get_current_dir_name functions return a null-terminated string containing an absolute pathname that is the current working … Read more
Following program converts integer number 42 to string “42” using sprintf. sprintf() writes to the character string. … Read more
In C program, comments doesn’t have any use other than for better understanding of the developers of … Read more