int main(){ int *h = malloc(sizeof(int) * 26); // using malloc to allocate array of integers for(int h_i = 0; h_i < 26; h_i++){ scanf("%d",&h[h_i]); } char* word = (char *)malloc(512000 * sizeof(char)); // using malloc to allocate string scanf("%s",word); return 0; }
Docker is used to run software packages called "containers". Containers are isolated from each other and bundle their own tools, libraries and configuration files; they can communicate with each other through well-defined channels --Wikipedia I have already written a article about the containers you can check out in here https://thangaayyanar.blogspot.com/2018/06/containers.html This time, let's learn more about docker engine how we can use this. The important things we need to know in docker are Docker Image: The container can be created with the help of Image. The Image file consists of code, libraries, environment variable...
Comments
Post a Comment