Posts

Make EXE console application C

A few days back, I got a requirement to create a .NET Core Console application and give it to my test team as an exe application for their testing. Well, I created a .NET Core console application and wrote all the business requirements.   But when I opened the app and the debug/release folder, I did not find the exe available there, as we were in the .NET Framework application.   Then, I found out a solution for it which will help us create an exe from a .NET Core Console application.   Let’s see it with example.   Step 1   Create a .NET Core Console application and click on the OK button. Here, I have created an application and when I build this solution, my expectation is to get the exe file available in the debug/release folder. Step 2 You can see that we do not have any exe files there in this folder. But I would like to inform you that this is not a bug. In .NET Core, it runs from the dll, so you have to just run the application by runnin...

A BLDC motor is found in the following applications except

Which is the best 2 GB graphics card for i3 processor 7th gen 4gb RAM?

nVidia ke lele fayade me rahoge You will be benefited with the knowledge of nVidiA..

Any beauty camera app other than Chinese app

Camera 360 This is a heavy ,smarter camera i used ever. According to the company, Camera360, its flagship product, has over 200 million users worldwide who produce millions of photographs, on average, per day. There are more than 200 filters available on Camera360, where users can also add live face effects and stickers to their photos. Many celebrities and Western companies have chosen to work with Camera360 to promote their shows and movies in the Us market. Last year when Steven Spielberg’s adaptation of Roald Dahl’s children’s book The BFG was released in China, the producers launched a promotional campaign in collaboration with Camera360. With the built-in AR technology on the app, users can scan movie posters at different locations and were given a chance to win The BFG -themed products. Beauty Plus This is also a best camera app as an alternative of camera 360.

How to draw a line in C without using graphics?

There are lot of packages, libraries in c. but if you want to draw a line using graphics Just type printf("%s",'-') or printf("%c",'_'). that simple.

Convert float to cstring C

Write a C function ftoa() that converts a given floating-point number or a double to a string. Use of standard library functions for direct conversion is not allowed. The following is prototype of ftoa(). The article provides insight of conversion of C double to string. Examples: ftoa(1.555, str, 2) should store “1.55” in res. ftoa(1.555, str, 0) should store “1” in res. A simple way is to use sprintf() , but use of standard library functions for direct conversion is not allowed. Approach: The idea is to separate integral and fractional parts and convert them to strings separately. Following are the detailed steps. //code//: // C program for implementation of ftoa() #include <math.h> #include <stdio.h> // Reverses a string 'str' of length 'len' void reverse(char* str, int len) {     int i = 0, j = len - 1, temp;     while (i < j) {         temp = str[i];         str[i] = str[j]...