473,416 Members | 1,730 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Visual C++ 7.1 INTERNAL COMPILER ERROR

// As usual the error message directs one to the report the bug.
//
// And as usual there is absolutely no way to do so without paying for
// the privilege...
//
// Or using three or four hours to find the _current_ reporting page...
#include <vector>
#include <iostream>

template< typename T, size_t N >
struct ArrayHolder
{
T elem[N];
};

template< typename T >
class VectorImpl
{
private:
std::vector<T> elem;
public:
template< size_t N >
VectorImpl( T const (&values)[N] ): elem( values, values+N ) {}

T& operator[]( size_t i ){ return elem.at( i ); }
T const& operator[]( size_t i ) const { return elem.at( i ); }
};

template< typename T >
class Vector: public VectorImpl< T >
{
public:
template< size_t N >
VectorImpl( T const (&values)[N] ): VectorImpl( values ) {}
};

int main()
{
typedef ArrayHolder<double, 6> DoubleArray6;
static DoubleArray6 const x = { 10, 20, 30, 40, 50, 60 };
static DoubleArray6 const xArray[] = { x };

Vector<DoubleArray6> v( xArray );
for( size_t i = 0; i < 6; ++i )
{
std::cout << v[0].elem[i] << std::endl;
}
}

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #1
19 3524
Alf P. Steinbach wrote:
#include <vector>
#include <iostream>

template< typename T, size_t N >
struct ArrayHolder
{
T elem[N];
};

template< typename T >
class VectorImpl
{
private:
std::vector<T> elem;
public:
template< size_t N >
VectorImpl( T const (&values)[N] ): elem( values, values+N ) {}

T& operator[]( size_t i ){ return elem.at( i ); }
T const& operator[]( size_t i ) const { return elem.at( i ); }
};

template< typename T >
class Vector: public VectorImpl< T >
{
public:
template< size_t N >
VectorImpl( T const (&values)[N] ): VectorImpl( values ) {}
The fact that it causes an internal compiler error may be a bit strange, but
it is your code that's at fault. You define a constructor with a name that
does not match the class it's in, and furthermore you try to use the base
class constructor without specifying template arguments.

The line should be:

Vector(T const (&values)[N] ) : VectorImpl<T>(values) {}

The code compiles fine then.
};

int main()
{
typedef ArrayHolder<double, 6> DoubleArray6;
static DoubleArray6 const x = { 10, 20, 30, 40, 50, 60
}; static DoubleArray6 const xArray[] = { x };

Vector<DoubleArray6> v( xArray );
for( size_t i = 0; i < 6; ++i )
{
std::cout << v[0].elem[i] << std::endl;
}
}


--
Unforgiven

Jul 22 '05 #2
Alf P. Steinbach wrote in news:40*****************@news.individual.net in
comp.lang.c++:

Subject: Visual C++ 7.1 INTERNAL COMPILER ERROR
// As usual the error message directs one to the report the bug.
//
// And as usual there is absolutely no way to do so without paying for
// the privilege...
//
// Or using three or four hours to find the _current_ reporting page...
Try posting to:

news://microsoft.public.dotnet.languages.vc

Hopefully someone from MS can pick it up from there.

[snip]

template< typename T >
class Vector: public VectorImpl< T >
{
public:
template< size_t N >
VectorImpl( T const (&values)[N] ): VectorImpl( values ) {}
You probably know this already but:

Vector( T const (&values)[N] ): VectorImpl< T >( values ) {}
};


[snip]

I have my editor setup so I can send my code through (currently)
5 (*) different compilers, really helps with ICE's.

*) Maybe 4, its rare these days that I use borland 5.4 for more than
a cheap laugh. (just checked it ICE'd on the fixed code).
Rob.
--
http://www.victim-prime.dsl.pipex.com/
Jul 22 '05 #3
* "Unforgiven" <ja*******@hotmail.com> schriebt:

The fact that it causes an internal compiler error may be a bit strange, but
it is your code that's at fault.


<teaspoon mode>
The user's input is _never_ at fault for a program crash.

A program, such as a compiler, shall never crash no matter what input
it is given.

For a compiler that's even more critical than for other programs.
</teaspoon mode>

Did you understand this?

What is your real name?

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #4
Alf P. Steinbach wrote:
* "Unforgiven" <ja*******@hotmail.com> schriebt:

The fact that it causes an internal compiler error may be a bit
strange, but it is your code that's at fault.
<teaspoon mode>
The user's input is _never_ at fault for a program crash.


It's not what I meant. Your code was wrong, but the compiler shouldn't have
given an ICE, I'll agree to that. Although if we must get technical, an ICE
is not a crash. It's just the compiler saying "something is in this code
that makes me unable to compile it, but I haven't a clue what".
A program, such as a compiler, shall never crash no matter what input
it is given.

For a compiler that's even more critical than for other programs.
I tend to be somewhat forgiving toward compiler writers, since I've written
one, so I know how #*$^# difficult it is. Truely, if writing an optimizing
compiler for a simple Pascal dialect as I was doing was that difficult, I'd
probably rather try to perform open hart surgery on myself than write a C++
compiler. ^_^ (please take this in the non-serious way it's intended)
</teaspoon mode>

Did you understand this?
Yes. What I don't understand is why you saw it necessary to lecture me.
What is your real name?


How is that relevant?

--
Unforgiven

Jul 22 '05 #5
* "Unforgiven" <ja*******@hotmail.com> schriebt:
Alf P. Steinbach wrote:
* "Unforgiven" <ja*******@hotmail.com> schriebt:

The fact that it causes an internal compiler error may be a bit
strange, but it is your code that's at fault.
<teaspoon mode>
The user's input is _never_ at fault for a program crash.


It's not what I meant. Your code was wrong, but the compiler shouldn't have
given an ICE, I'll agree to that. Although if we must get technical, an ICE
is not a crash. It's just the compiler saying "something is in this code
that makes me unable to compile it, but I haven't a clue what".


An ICE is a crash.

Usually it's an exception (e.g. due to indexing internal tables outside
allowed range) that's caught in the outermost top-level exception handler.

It's always a bug, and that's why it should always be reported, and why
the folks at Microsoft that made the compiler chose to include guidelines
for doing so in the error message -- then marketing or whomever have
chosen to effectively remove the actual possibility of reporting the bug
by moving the reporting page around to different URLs, by not including any
link to it in the page one is directed to, by giving the impression that
no such reporting page even exists, and so on; it's just Bad Managers.

I tend to be somewhat forgiving toward compiler writers, since I've written
one


Well who hasn't. Writing a Pascal compiler, as you state you have done, was
part of my basic education. I think it's almost always included in CS.

What is your real name?


How is that relevant?


It is a coward's way to hide behind anonymity and state that other people
are wrong or at fault for something.

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #6
Alf P. Steinbach wrote:
* "Unforgiven" <ja*******@hotmail.com> schriebt:

The fact that it causes an internal compiler error may be a bit
strange, but it is your code that's at fault.

And fwiw, Borland C++Builder 5 may not give an ICE with the incorrect code,
it actually fails to compile the *correct* code with:
[C++ Error] Unit1.cpp(43): E2034 Cannot convert 'const
ArrayHolder<double,6>' to 'double'
(that's the line: "static DoubleArray6 const xArray[] = { x };" fyi)

Visual C++ 6 is even worse btw:
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(25)
: error C2265: '<Unknown>' : reference to a zero-sized array is illegal
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(29)
: see reference to class template instantiation 'VectorImpl<T>' being
compiled
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(36)
: error C2265: '<Unknown>' : reference to a zero-sized array is illegal
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(37)
: see reference to class template instantiation 'Vector<T>' being compiled
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(43)
: error C2440: 'initializing' : cannot convert from 'const struct
ArrayHolder<double,6>' to 'double'
No user-defined-conversion operator available that can perform this
conversion, or the operator cannot be called
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(25)
: error C2265: '<Unknown>' : reference to a zero-sized array is illegal
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(33)
: see reference to class template instantiation 'VectorImpl<struct
ArrayHolder<double,6> >' being compiled
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(45)
: see reference to class template instantiation 'Vector<struct
ArrayHolder<double,6> >' being compiled
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(36)
: error C2265: '<Unknown>' : reference to a zero-sized array is illegal
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(45)
: see reference to class template instantiation 'Vector<struct
ArrayHolder<double,6> >' being compiled
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(45)
: error C2664: '__thiscall Vector<struct ArrayHolder<double,6>::Vector<struct ArrayHolder<double,6> >(const class Vector

<struct ArrayHolder<double,6> > &)' : cannot convert parameter 1 from 'const
struct ArrayHolder<double,6> [1]' to 'const class Vector<struct
ArrayHolder<double,6> > &'
Reason: cannot convert from 'const struct ArrayHolder<double,6> [1]'
to 'const class Vector<struct ArrayHolder<double,6> >'
No constructor could take the source type, or constructor overload
resolution was ambiguous
D:\My Documents\Visual Studio
Projects\DCTSDK\DataConversieTool_14_8_2002\Projec tDataconversietool\cpptestv6\cpptestv6.cpp(50)
: warning C4508: 'main' : function should return a value; 'void' return type
assumed

--
Unforgiven

Jul 22 '05 #7
Alf P. Steinbach wrote:
It's always a bug, and that's why it should always be reported, and
why
the folks at Microsoft that made the compiler chose to include
guidelines for doing so in the error message -- then marketing or
whomever have chosen to effectively remove the actual possibility of
reporting the bug
by moving the reporting page around to different URLs, by not
including any link to it in the page one is directed to, by giving
the impression that
no such reporting page even exists, and so on; it's just Bad Managers.


Use the relevant microsoft.public group. The VC++ team reads that. It's the
best way to get the bug through.
I tend to be somewhat forgiving toward compiler writers, since I've
written one


Well who hasn't. Writing a Pascal compiler, as you state you have
done, was part of my basic education. I think it's almost always
included in CS.


I know tons of people that haven't written a compiler. Mostly these are
people who are in the IT industry without having a 'real' CS education. They
tend to outnumber the real CS people. Fwiw, for me it was also part of my CS
education. Also one of the most fun assignments we've had, actually.
What is your real name?


How is that relevant?


It is a coward's way to hide behind anonymity and state that other
people are wrong or at fault for something.


It is also the way to avoid spam. If you must know, my real name is Sven
Groot. I'd post here under my real name, but this group is on the same
server as several other groups where I definitely don't want to do that. On
the MS groups, where I post via msnews.microsoft.com, I do use my real name.

--
Unforgiven

Jul 22 '05 #8
"Alf P. Steinbach" wrote:
What is your real name?


How is that relevant?


It is a coward's way to hide behind anonymity and state that other people
are wrong or at fault for something.


Alf, take your presumptive crap elsewhere.
Jul 22 '05 #9
"Alf P. Steinbach" wrote:

* "Unforgiven" <ja*******@hotmail.com> schriebt:

The fact that it causes an internal compiler error may be a bit strange, but
it is your code that's at fault.


<teaspoon mode>
The user's input is _never_ at fault for a program crash.

A program, such as a compiler, shall never crash no matter what input
it is given.

For a compiler that's even more critical than for other programs.
</teaspoon mode>

Did you understand this?


<rubber-coated baby spoon mode>

What does your compiler crash have to do w/ clc++?

</rubber-coated baby spoon mode>
Jul 22 '05 #10
* Julie <ju***@nospam.com> schriebt:

<rubber-coated baby spoon mode>

What does your compiler crash have to do w/ clc++?

</rubber-coated baby spoon mode>


First, it isn't my crash, it's a Visual C++ 7.1 crash (ICE).

Second, disregarding the version (it's the latest) that means it is
a crash in the most used C++ compiler.

Third, it's in the interest of the C++ community to get Microsoft up to
date in its C++ compiler technology, for which it's important to get back
in order an open channel for ICE reporting, which other vendors have, and
for which it's important to bring those bugs out in the open, known.

Off-topic: you're way out of line, Julie, and the attempt at sarcasm
does not help.

And that's not something new with you.

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #11
al***@start.no (Alf P. Steinbach) wrote in message news:<40*****************@news.individual.net>...
// As usual the error message directs one to the report the bug.
//
// And as usual there is absolutely no way to do so without paying for
// the privilege...
//
// Or using three or four hours to find the _current_ reporting page...


Perhaps this will save some of that time:

http://support.microsoft.com/default...rt/default.asp

OTOH, MS apparently already has the next version of the compiler
fairly functional, so it may be open to question how much good
reporting it at this point really does -- if it's already been fixed,
none, but if it hasn't, the timing may be nearly ideal.
--
Later,
Jerry.

The universe is a figment of its own imagination.
Jul 22 '05 #12
* jc*****@taeus.com (Jerry Coffin) schriebt:
al***@start.no (Alf P. Steinbach) wrote in message news:<40*****************@news.individual.net>...
// As usual the error message directs one to the report the bug.
//
// And as usual there is absolutely no way to do so without paying for
// the privilege...
//
// Or using three or four hours to find the _current_ reporting page...


Perhaps this will save some of that time:

http://support.microsoft.com/default...rt/default.asp


Thank you :-), but that is not the _current_ page :-(.

It is in fact an old page, referring to Windows versions up to W2K only.

And submitting a report (which I tried just now) only results in
"Sorry, the page you requested is not available" after typing in everything
and clicking the button.

Now that's what I remember from far back for that page and other Visual C++
bug reporting pages; they seem move it around, never at a constant URL.

I once apparently succeeded in submitting a bug report because someone from
Microsoft (I think) provided an URL to the then _current_ bug reporting page,
but to find it -- well, that's the three or four hours mentioned above...

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #13
In article <40*****************@news.individual.net>, al***@start.no (Alf P. Steinbach) wrote:
* "Unforgiven" <ja*******@hotmail.com> schriebt:

The fact that it causes an internal compiler error may be a bit strange, but
it is your code that's at fault.


<teaspoon mode>
The user's input is _never_ at fault for a program crash.


Agree. I only once got a severe number of INTERNAL COMPILER ERROR from Visual
C++. It was after I got a new motherboard with new memory... it was bad memory
that cause all the errors...

--
Jørn Dahl-Stamnes

Jul 22 '05 #14
"Alf P. Steinbach" wrote:

// As usual the error message directs one to the report the bug.
//
// And as usual there is absolutely no way to do so without paying for
// the privilege...
//
// Or using three or four hours to find the _current_ reporting page...


(Still trying to figure out how this is on-topic in this forum...)

Call paid support.

Tell them it is a bug, and they will credit the initial charge.

Done.
Jul 22 '05 #15
"Alf P. Steinbach" wrote:
First, it isn't my crash, it's a Visual C++ 7.1 crash (ICE).

So, how is that on-topic?

Brian Rodenborn
Jul 22 '05 #16
* Default User <fi********@boeing.com.invalid> schriebt:
"Alf P. Steinbach" wrote:
First, it isn't my crash, it's a Visual C++ 7.1 crash (ICE).


So, how is that on-topic?


Read a FAQ on quoting.

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #17
* Julie <ju***@nospam.com> schriebt:
"Alf P. Steinbach" wrote:

// As usual the error message directs one to the report the bug.
//
// And as usual there is absolutely no way to do so without paying for
// the privilege...
//
// Or using three or four hours to find the _current_ reporting page...
(Still trying to figure out how this is on-topic in this forum...)


Well, that's a bit complicated, so bear with me.

For newbies we use a simple rule, because they need a simple rule they
can grasp and follow mechanically: this group is only about standard C++.

In practice you will have seen that e.g. questions about Boost are "allowed",
whereas questions about e.g. ATL or SuperDuperPlotter are less welcome, and
questions that only have to do with tool usage are scorned, burned, killed.

The current fewer of topicality enforcement originated many years ago when
this group more or less was hijacked by Windows programmer newbies, leading
to the establishment of [comp.lang.c++.moderated] to filter out the flak.

So in effect any article that would be accepted in [comp.lang.c++.moderated]
is on-topic here, but that's a bit hard to explain to newbies. For the main
rationale is something that requires judgment. Namely, whether an article is
of common interest (affects many, or many can learn from it), or not. But one
can not require such judgement from someone who doesn't even know whether
something is part of C++ or has to do with programming at all. So for newbies
a simplified hard-and-fast rule is used; but I think you'll perhaps understand
this if you think about whether [comp.lang.c++.moderated] would accept it.

Call paid support.

Tell them it is a bug, and they will credit the initial charge.

Done.


I don't trust them... ;-)

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #18
"Alf P. Steinbach" wrote:
[snip]
In practice you will have seen that e.g. questions about Boost are "allowed"
whereas questions about e.g. ATL or SuperDuperPlotter are less welcome, and
questions that only have to do with tool usage are scorned, burned, killed.
Yes, we have seen that regarding Boost, however _I_ consider Boost questions
off-topic (Boost has its own list/newsgroup, no need to clutter up this forum
w/ such stuff), unless it specifically is about the language or a standard
construct or idiom, and if that is the case, then _I_ don't exclude any 3rd
party code library (such as the mentioned ATL, etc.).
whereas questions about e.g. ATL or SuperDuperPlotter are less welcome, and
questions that only have to do with tool usage are scorned, burned, killed.


[snip]
Call paid support.

Tell them it is a bug, and they will credit the initial charge.

Done.


I don't trust them... ;-)


Personally, I don't understand (or attempt to interpret) emoticons ... are you
serious in that you don't trust them? I've done it several times, and never
had a problem. In the short and long run for me, it was much more
cost-effective than wasting hours (of billable) time trying to find their free
support options...
Jul 22 '05 #19
Because I know microsoft.public.dotnet.languages.vc is monitored by someone
with the power to submit bug reports to the Whidbey team, I posted the
following message there. I took the liberty of breaking the code down to the
minimal still failing case.

----

This was posted by someone in comp.lang.c++, and later in
microsoft.public.vstudio.general, but since I know Carl is in this group,
and he's the one that should read this, I've reposted it here. I've also
minimalised the code that causes the bug.

The bug is that the following syntax causes an Internal Compiler Error. The
code is not correct, but should produce a warning or error message, not an
ICE. It occurs when a template class mistakenly names its constructor after
a different class, and in addition uses a template type parameter followed
by 'const'. See 'example below'. The code is complete.

----CODE SAMPLE----
class SomeClassA
{
};

template<typename X>
class SomeClassB
{
public:
SomeClassA(X const &n) { }; // *
};

int main()
{
return 0;
}
----END CODE SAMPLE----

----COMPILER OUTPUT----
test2.cpp
d:\My Documents\Visual Studio Projects\cpptest\test2.cpp(9) : fatal error
C1001: INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 2701)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
----END COMPILER OUTPUT----

The error occurs in the line marked // *. Remove the 'const' and the code
correctly fails to compile because it sees SomeClassA as a typename, but at
least in this situation it gives proper error messages, not an ICE. Remove
class SomeClassA, and the code compiles with "warning C4183: 'SomeClassA':
missing return type; assumed to be a member function returning 'int'".
Change the 'X' on line * into 'int', and the code compiles with the same
warning.

I'm not certain if code like this is supposed to compile according to the
standard with such a warning, or if it's supposed to fail like when the
const is removed, but I do know it shouldn't give an ICE.

--
Unforgiven

Jul 22 '05 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Stephen Horne | last post by:
I started making up a Python extension module to wrap a C++ library of mine using Boost Python. Trouble is, the library has a number of classes each of which has a lot of methods. I seem to have...
0
by: Alex | last post by:
Hi, I have a problem with the VB.NET compiler: When I open my solution I recive the message : "Visual Basic .Net compiler is unable to recover from the following error : System Error...
5
by: K. Shier | last post by:
when attempting to edit code in a class file, i see the bug "Visual Basic ..NET compiler is unable to recover from the following error: System Error &Hc0000005&(Visual Basic internal compiler...
0
by: Runge Developer | last post by:
When compiling a VB.NET assembly we reguarly have the problem where it either hangs or produces the following error: ----- Visual Basic .NET compiler is unable to recover from the following error:...
11
by: Alf P. Steinbach | last post by:
// As usual the error message directs one to the report the bug. // // And as usual there is absolutely no way to do so without paying for // the privilege... // // Or using three or four hours...
1
by: Gabriel Becedillas | last post by:
During the last weeks I've trying to port boost::python 1.23 to work with Visual C++ 7.1. I had some headaches while doing so because VC++ 7.1 supports Koenig lookup and previous ones doesn't...
4
by: David Sworder | last post by:
Consider the following line of code (it's not important what it does): resp.DocItem=Relations.SelectDocItems_BySearchString(req.SearchPhrase); It turns out that this line is in error. The...
2
by: Sen | last post by:
Hi All, I am using (Visual C++ 1.52 IDE )for my MFC Application Project. I am working on an existing code base where the no of lines is around 100,000, spread across different header and cpp...
6
by: Dusan Jan | last post by:
I get the following message when compiling or by background compile: Visual Basic .NET compiler is unable to recover from the following error: System Error &Hc0000005& (Visual Basic internal...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.