C program in Linux to find the current working directory (PWD)

getcwd, getwd, get_current_dir_name functions return a null-terminated string containing an absolute pathname that is the current working … Read more

C program to convert integer number to string

Following program converts integer number 42 to string “42” using sprintf. sprintf() writes to the character string. … Read more

How to write Comments in C Program ?

In C program, comments doesn’t have any use other than for better understanding of the developers of … Read more

Sending ARP request and receiving ARP Reply using C code

This post is in continuation of our previous post “Understanding ARP (Address Resolution Protocol) basics“ To visualise … Read more

Bitbake / Yocto recipes for cross compiling golang program

For compiling simple golang helloworld program as part of yocto build framework, we need to download meta-golang … Read more

C program to know storage size of int, char and float

To get the exact size of a type or a variable on a particular platform, you can … Read more

C program for finding remainder from floating point division using fmod

As we have seen in “C program for using modulo operator, finding if number is dividable and … Read more