NILKAMAL PLASTICS

nilkamal-plastics-logo

Nilkamal Plastics is a producer of molded plastic furniture giving it an edge over the competition. Nilkamal was launched under the able leadership of first-generation entrepreneurs Mr. Vamanrai Parekh (CHAIRMAN of Nilkamal Ltd.) and Mr. Sharad Parekh (Managing Director of Nilkamal Ltd.) Ever since, Nilkamal has gradually ventured into a multiplicity of businesses that pan across Material Handling Solutions, Ready Furniture, @Home โ€“ the brandโ€™s lifestyle home solutions retail chain, Nilkam... al Mattrezzz, and Bubbleguard โ€“ a material protection solution. Nilkamal is also listed on the National Stock Exchange and Bombay Stock Exchange since 1991. Maintaining leadership in its market segments through a keen focus on quality, its core values, hard work and meeting dynamic market demands is a basic tenet driving the Company.And in this endeavour, Nilkamal has constantly evolved to create a distinct position for itself. It aims to create as many touchpoints as possible so as to give customers the opportunity to make most of its product and service proposition. With a robust digital platform, customers can now gain access to Nilkamal products sitting in almost any corner of the country. All Nilkamal manufacturing units are ISO certified across various levels along with BIFMA โ€“ Level 3 and Greenguard (UK Cert). Brand Nilkamal has created waves not only in India, but also in the International Markets. From developed and sophisticated markets of North America and Australia, to developing markets in Africa, South America and GCC, Nilkamal products are available in as many as 30 countries. The brand has been recognized by the Government of India as well for its export business.

#SimilarOrganizations #People #Website #More

NILKAMAL PLASTICS

Social Links:

Industry:
Furniture Manufacturing Plastics And Rubber Manufacturing Product Design

Founded:
1990-01-01

Address:
Mumbai, Maharashtra, India

Country:
India

Website Url:
http://www.nilkamal.com

Total Employee:
1001+

Status:
Active

Contact:
1800 121 9115

Email Addresses:
[email protected]

Technology used in webpage:
Viewport Meta IPhone / Mobile Compatible SPF SSL By Default Google Font API Google Analytics WordPress Domain Not Resolving Apache Wordpress Plugins


Similar Organizations

cosmo-logo

Cosmo

Comprehensive manufacturing solutions provider, specializing in engineered soft-goods, material innovation, and sustainability.

dci-furniture-logo

DCI Furniture

DCI Furniture is a family-owned, fully integrated, American furniture manufacturing company.

kaas-tailored-logo

Kaas Tailored

Kaas Tailored provides product design, integrated logistic and furniture solutions for industrial and consumer applications.

metafaux-studio-logo

Metafaux Studio

Metafaux Studio is a product design, furniture, 3D modeling and simulation company.

morphomfg-logo

MorphoMFG

MorphoMFG Takes Ideas From a Napkin Sketch to Mass-Manufacturing Award-Winning Products

national-plastic-industries-lt-logo

National Plastic Industries Lt

National Plastic Industries is a manufacturer of houseware products but also an exporter of plastic furniture in India.

pil-italica-lifestyle-logo

PIL Italica Lifestyle

Italica Furniture is a trusted name in moulded plastic furniture.

plastic-components-logo

Plastic Components

Plastic Components is a producer of injection molded plastic parts using unique manufacturing process automation.

supreme-industries-logo

Supreme Industries

Supreme Industries is a plastic processing company that offers furniture, storage material handling products, XF films, and products.

Current Employees Featured

vamanrai-v-parekh_image

Vamanrai V. Parekh
Vamanrai V. Parekh Chairman & Founder @ Nilkamal Plastics
Chairman & Founder
1981-01-01

sharad-v-parekh_image

Sharad V. Parekh
Sharad V. Parekh Managing Director & Founder @ Nilkamal Plastics
Managing Director & Founder
1981-01-01

hiten-parekh_image

Hiten Parekh
Hiten Parekh Joint Managing Director @ Nilkamal Plastics
Joint Managing Director

manish-parekh_image

Manish Parekh
Manish Parekh President & Executive Director of the Furniture Division @ Nilkamal Plastics
President & Executive Director of the Furniture Division

nayan-parekh_image

Nayan Parekh
Nayan Parekh Executive Director and President (Material Handling) @ Nilkamal Plastics
Executive Director and President (Material Handling)
1995-01-01

vinod-parur_image

Vinod Parur
Vinod Parur Chief Human Resources Officer @ Nilkamal Plastics
Chief Human Resources Officer
2019-08-01

Founder


sharad-v-parekh_image

Sharad V. Parekh

vamanrai-v-parekh_image

Vamanrai V. Parekh

Stock Details


Company's stock symbol is NBO:NILKAMAL

Official Site Inspections

http://www.nilkamal.com Semrush global rank: 1.74 M Semrush visits lastest month: 13.62 K

  • Host name: cloud.nilkamal.com
  • IP address: 23.226.124.126
  • Location: United States
  • Latitude: 37.751
  • Longitude: -97.822
  • Timezone: America/Chicago

Loading ...

More informations about "Nilkamal Plastics"

Dynamic Memory Allocation in C - GeeksforGeeks

6 days ago Dynamic memory allocation is possible in C by using the following 4 library functions provided by <stdlib.h> library: malloc () The malloc () (stands for memory allocation) function is โ€ฆSee details»

free - cppreference.com

Aug 14, 2024 A call to free that deallocates a region of memory synchronizes-with a call to any subsequent allocation function that allocates the same or a part of the same region of memory. โ€ฆSee details»

How to correctly use malloc and free memory? - Stack Overflow

Jul 4, 2014 I am wondering what is the right/standard way to use malloc and free. Is it needed to set pointer NULL after free? Basically, which of the two following ways is correct? double* โ€ฆSee details»

C Dynamic Memory Allocation Using malloc (), calloc (), free ...

This is known as dynamic memory allocation in C programming. To allocate memory dynamically, library functions are malloc(), calloc(), realloc() and free() are used.See details»

Dynamic Memory Allocation in C using malloc(), calloc(), free() โ€ฆ

May 20, 2025 Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and โ€ฆSee details»

Dynamic Memory Allocation in C: malloc(), calloc(), realloc(), free()

Sep 16, 2024 Learn dynamic memory allocation in C using malloc(), calloc(), realloc(), and free() functions with detailed examples, syntax, and explanations.See details»

C malloc and free Tutorial - ZetCode

Jan 29, 2024 C tutorial on dynamic memory allocation using malloc and free, covering their usage, benefits, and practical examples.See details»

Dynamic Memory Allocation in C (malloc, calloc, realloc, free)

Understand dynamic memory allocation in C using malloc, calloc, realloc, and free. Learn with simple examples how memory is managed in C language.See details»

C Memory Management: Dynamic Allocation with malloc () and free ()

Sep 6, 2024 Learn about dynamic memory allocation in C programming using malloc() and free(). Discover best practices for efficient C memory management in this comprehensive guide.See details»

Understanding Heap Memory Allocation in C - Malloc and Free

Aug 27, 2023 Malloc and Free are the most common functions used for heap memory management. These functions... Tagged with c, programming, tutorial, linux.See details»

malloc - cppreference.com

Sep 3, 2023 If size is zero, the behavior of malloc is implementation-defined. For example, a null pointer may be returned. Alternatively, a non-null pointer may be returned; but such a pointer โ€ฆSee details»

Introduction to Dynamic Memory Allocation in C: malloc, calloc, and free

May 30, 2025 Learn Dynamic Memory Allocation in C with examples of malloc(), calloc(), and free(). Understand how to manage memory efficiently in your programs.See details»

How do I free memory in C? - Stack Overflow

You have to free() the allocated memory in exact reverse order of how it was allocated using malloc(). Note that You should free the memory only after you are done with your usage of the โ€ฆSee details»

Dynamic Memory Allocation in C - Maven Silicon

Apr 17, 2025 Learn dynamic memory allocation in C with malloc, calloc, realloc, and free. Avoid memory leaks using best practices and Valgrind tools.See details»

Dynamic Memory Allocation (malloc, calloc, free, new, delete) in C/C++

May 2, 2025 Dynamic Memory Allocation in C/C++ is a powerful feature that provides developers with the flexibility to manage memory during runtime. This guide, curated by โ€ฆSee details»

Mastering Memory Management with malloc and free in C

The functions malloc and free are the primary tools for dynamic memory management, but their internal workings and impact on the heap are often misunderstood. This blog post explains the โ€ฆSee details»

Implementing malloc() and free() โ€” first steps - DEV Community

Jan 16, 2024 Have you ever wondered how the malloc () and free () functions work? In this series, we will see how they can be implemented, from the most basic and inefficient way โ€ฆSee details»

simple-malloc (C่ฏญ่จ€ๅฎž็Žฐ็ฎ€ๅ•็š„ๅ†…ๅญ˜ๅˆ†้…ๅ™จ๏ผ‰ - ็ŸฅไนŽ

Sep 22, 2025 ้กน็›ฎๅœฐๅ€๏ผš maoding1/simple-malloc: a simple implementation of glibc's malloc ่ฎพ่ฎก่ฏฆ่งฃ ๆœฌๅ†…ๅญ˜ๅˆ†้…ๅ™จ้‡‡็”จไบ†ไธ€็ง็Žฐไปฃ้ซ˜ๆ€ง่ƒฝๅˆ†้…ๅ™จไธญๅธธ่ง็š„ ๅˆ†ๅฑ‚่ฎพ่ฎก ๆ€ๆƒณ๏ผŒๅ…ถๆ ธๅฟƒๆ˜ฏ ้€š่ฟ‡ๅŒบ โ€ฆSee details»

Dynamic Memory Allocation In C Using Malloc(), Calloc(), Free() โ€ฆ

May 10, 2024 In C, this dynamic memory allocation is achieved through functions like malloc(), calloc(), free(), and realloc(). These functions provide the means to allocate memory, initialize โ€ฆSee details»

C Dynamic Memory Allocation With Malloc(), Calloc(), Realloc() And Free โ€ฆ

Learn about dynamic memory allocation in C with this comprehensive guide. Understand how to use malloc (), calloc (), realloc (), and free () to manage memory dynamically in your C โ€ฆSee details»

linkstock.net © 2022. All rights reserved