Java Native Interface ( JNI ) Example , Calling Native C functions from JAVA
The Java Native Interface (JNI) establishes a well-defined and platform-independent interface between the JAVA and Native C … 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
In this post, we will create a simple C program, compile it with debugging enabled and then … Read more
This post is in continuation of our previous post “Understanding ARP (Address Resolution Protocol) basics“ To visualise … Read more
For compiling simple golang helloworld program as part of yocto build framework, we need to download meta-golang … Read more
To get the exact size of a type or a variable on a particular platform, you can … Read more
If you are trying to run modulo / remainder operator like below, there are higher chances you … Read more