About 50 results
Open links in new tab
  1. I added a new class to my project and got an error saying …

    I experienced this issue after adding an xUnit test class to my .NET Core 2.1 project. The following article gives a detailed explanation of why, and provided the answer that worked for me - here. …

  2. How do I specify C:\Program Files without a space in it for programs ...

    May 21, 2009 · A configuration file needs position of another file, but that file is located in "C:\\Program Files", and the path with space in it is not recognized, Is there another way to specify the location

  3. How can I compile and run a C# program without using Visual Studio?

    I am very new to C#. I have just run a C# ' Hello, World! ' program using Visual Studio. Can I run or compile a C# program without using Visual Studio? If it is possible, then which compiler should I use?

  4. C programming in Visual Studio - Stack Overflow

    Jan 6, 2017 · Can I use Visual Studio to learn C programming? In the new project menu I can choose between Visual Basic, Visual C#, Visual C++, Visual F# and others but I don't see "C" or "Visual C".

  5. syntax - What does "static" mean in C? - Stack Overflow

    Feb 21, 2009 · What is the reason to remove "in a C program" from the end of the title, @Lundin? It is slightly redundant in the presence of tag c, but it lets me see the categorization more quickly, without …

  6. How to run a C program in Visual Studio Code? - Stack Overflow

    Aug 30, 2021 · The guide for using C++ with Visual Studio Code is located here: C/C++ for Visual Studio Code If you are using the windows operating system, you can install the Microsoft Visual C++ …

  7. How to mention C:\Program Files in batchfile - Stack Overflow

    May 1, 2022 · How to add parameters say from your example, virtualdj_pro.exe with paramameters -PACKAGENAME ABCSync? I use in my batch files - c:\progra~2\ instead of C:\Program Files (x86)\ …

  8. How can I get the date and time values in a C program?

    The ISO C standard also provides the strftime () function which can be used to avoid these problems. A C++ version of this question: How can I get current time and date in C++?

  9. How do I get the directory that a program is running from?

    Sep 27, 2008 · To get the directory a program is running in, as the solutions have demonstrated, requires that you get that information from the process control structures of the operating system in …

  10. in c++ main function is the entry point to program how i can change it ...

    Oct 20, 2010 · The entry point of a program is where it starts executing at the machine code level. That's seldom if ever main; instead, the entry point function does a few initialization tasks and then, for a C …