answersLogoWhite

0

What does initialise mean?

Updated: 9/18/2023
User Avatar

Wiki User

12y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What does initialise mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does Reinitialize mean?

To initialise again.


Is the line or the circle mean on?

The line, or I (Initialise) means on


What does mcafee wireless security failed to initialise mean?

It means that mcafee wireless security failed to start for some reason.


How do you initialise arrays?

int a[] = {1, 2, 3, 4, 5};


What are control words in microprocessor?

to initialise the chip in microprocessor....that is for which purpose we are going to use it......


How do you initialise pointers in functions?

Just like any other variable. Example: char *p = NULL;


What is common constructor?

Type your answer here... when the constuctor of derived class is used to initialise the members of Base class such constructer is called common constructer.


What problems can arise when hardware is added and tries to use an interrupt that has been assigned to another device?

Such extra added hardware cannot be initialise


What are the reasons for rise of constructor concept in c?

Not sure what you mean by this. C is a not an object-oriented programming (OOP) language, and therefore has no constructor concept. You probably meant C++ but, even so, there is no "rise of constructor concept". Constructors are fundamental to OOP -- they allow you to initialise an object at the point of instantiation.


How do you declared and initialized a pointer variable?

#include<iostream> int main() { int x=42; int* p=&x; // declare and initialise a pointer, assigning the address of x. }


Why you cant initialise a value of a variable inside public in class in c plus plus?

I see no reason why you can't do that. The question must be mis stated. Please clarify, and show your code.


Why can't you initialize data members within a class?

You can. Every constructor has an initialise segment immediately before the body. class myClass { public: myClass(): // note the colon: initialisation segment follows... myInt( 0 ), myChar( '0' ) { myPtr = new char; // you can also initialise members in the body. // if you have a lot of members and several constructors, create // a private init() method to maintain a consistent initialisation. } private: char myChar; int myInt; char * myPtr };