visual-studio tag

144 questions


1 answers
143 views
0
How do I view dynamic assigned arrays in Visual Studio debugging mode?

The visual studio debugger shows the static arrangement well,Do I have to press + to show the dynamic array or double pointer?Also, sometimes I have to press + every time, so it's annoying.


1 answers
137 views
0
How do I write C99 stdint.h in Visual Studio?

I looked it up and I heard that the visual version I use doesn't have stdint.hThen I can't write anything in this header? TT?

2 years ago

1 answers
43 views
0
(Visual Studio) Appears only on my computer while using Visual Studio.

char *a[] = { Hong Gil-dong, Kim Gil-dong, Lee Gil-dong, Park Gil-dong, Choi Gil-dong};All the other computers up there are working fine, but strangely, I...Hong Gil-dong, Kim Gil-dong, Lee Gil-dong, ...

2 years ago

1 answers
39 views
0
How to fold the code section without touching the scope in the Visual Studio?

When you lower the scope using brackets in the Visual Studio, it supports the ability to fold or peel the code for each lowered scope. For example,

2 years ago

2 answers
43 views
0
I'm really curious. Regarding the visual studio version

I use 2010 a lot in the field Does the existing source itself have the 2010 version, so do you continue to use that version?.....I'm a new developer, but... It was so uncomfortable to write 2015 and 2...

2 years ago

1 answers
36 views
0
When writing to a binary file with a fwrite function!

#include <stdio.h>int main(){ FILE * fp; char* a=all_new; fp=fopen(data.bin,wb+); fwrite(a,200,1,fp);}I saw the data.binThere are trash values. I want to fill up the parts that exceed 7 with CC ...

2 years ago

1 answers
43 views
0
C++ Builder error during Windows Twisted installation.

When installing scrapy to crawl with Python, an error occurred while installing a package called twitted.They said there was no cl.exe, so after all the rumors... I installed Visual Studio C++ Build T...

2 years ago

1 answers
60 views
0
I wonder about the value of the repeat for.

void Start(){ for (int a = 1; a < 2; a++) { Debug.Log(a); }}According to the above repetition, I thought the output value would be 2, but it came out as 1. Is it not applied to the output value be...

2 years ago

1 answers
60 views
0
In the visual studio, the console window turns off

I was using it well until yesterdaySuddenly, the console window just turns off. Why is this happening?I temporarily scanf() at the bottom to block itHow do I fix it?

2 years ago

1 answers
35 views
0
Visualstudio c language getchar() related questions

The code to print out the number you entered into multiplication tables I read a book and tried it When you hit only one getchar() at the end, type an integer in the console window and type enter The ...

2 years ago
« - 13 - »

© 2024 OneMinuteCode. All rights reserved.