0
How to make the E-commerence store like Amazon
How to make the E-commerence store like Amazon | anyone give me e-commerence store coding
11 Respuestas
+ 3
Use an E-commerence platform. There are many to choose from. https://www.shopify.com/blog/best-ecommerce-platforms
After you choose one, Watch a Youtube video for how to set up the platform.
0
Thanks brother
0
Eman Eman You're welcome ☺️
0
How do you want to do it? A simpler way or complicated way?
Shopify is a good one, However there are issues like generally Shopify Shops can be fake ones. Like a website that looks like the Nike website but is a fake one, So sometimes if you use Shopify as the ecommerce platform, it will pass an insecure website for shopping.
0
Ok bro
0
How I can float while loop in c language coding
0
A `while` loop in C is used to repeatedly execute a block of statements as long as a given condition is true. Here's the basic syntax for a `while` loop:
```c
while (condition) {
// Code to be executed as long as condition is true
}
```
To illustrate a `while` loop with a floating-point condition, here's an example where we increment a floating-point variable until it reaches a certain value:
```c
#include <stdio.h>
int main() {
float number = 0.0;
float increment = 0.1;
while (number < 1.0) {
printf("Number: %.1f\n", number);
number += increment; // Increment the number by 0.1
}
return 0;
}
```
### Explanation:
1. **Initialization**: The floating-point variable `number` is initialized to `0.0`.
2. **Condition**: The loop will continue to execute as long as `number` is less than `1.0`.
3. **Code Block**: Inside the loop, we print the current value of `number` and then increment it by `0.1`.
### Important Points to Consider:
- **Floating-point Precision**: Be
0
I think it's going to a lot of your time and patience as Amazon is a huge website and it's not easy to replicate but if you are willing to make a smaller site like https://www.jacketfever.com/product/taylor-swift-black-the-man-jacket/ then you can achieve in a way less of a time.
0
Thank you
0
i am also interested bro
0
Okay make the website