C :: Default Value Of Pointer

Feb 28, 2014

Following is the code snippet

Code:
[COLOR=white !important]?
1
2
3
4
5 char str1[]="Bombay";
char str2[]="Pune";
char *s1=str,*s2=str2;
while(*s1++=*s2=str2);
printf("%s",str1);

Output of this code comes out to be Pune

But according to me output should be puneay.

Pune should be copied in place of Bomb.and rest should be as it is.
[/COLOR]

View 12 Replies


ADVERTISEMENT

C++ :: Set Pointers To Default Value For Both 32 Bit And 64 Bit

Sep 6, 2013

I have a problem. I want to set pointers to a default value for both 32 bit and 64 bit compiles. The 32-bit version works as:

enum constants { UNDEFINED = 0xDeadBeef }
if ((unsigned long)ptr == UNDEFINED)

but I can't seem to extend this to 64-bits. I've tried
#if __SIZEOF_POINTER__ == 4
enum constants { UNDEFDATA = 0xDeadBeef };
}; // enum constants
#elif __SIZEOF_POINTER__ == 8
enum constants { UNDEFDATA = 0xDeadBeefDeadBeef };
#endif

with:
if (ptr == UNDEFINED)

but get a message saying the '==' is undefined (I understand this)

Is there any way to setup so that I can change the size of my constants so that the comparisons will always work correctly? I've tried a 'typedef' but the compiler complains at

'typedef unsigned long long ADDR' // won't accept, and
static const SlipCellBase * const TEMPORARY = (SlipCellBase&)0xFFFFFFFFFFFFFFFF; // illegal conversion

enum doesn't work (because it's an int?)

View 1 Replies View Related

C++ :: No Appropriate Default Constructor Available?

Oct 12, 2014

First I wrote a Binary-tree class to draw a binary tree on the window. The nodes were small circles. Then I become wanted to change the shape of the nodes from circles to triangles by another class, Binary-tree-derived which is derived from Binary-tree class. I wrote the below code to do the job but I get two errors about constructors. First, code:

/* The binary-tree class, one of the topics that has been said in Programming Principles and Practice using C++ book by Biarne Stroustrup.
This code is written by R Abbasi (s.rabbasi@yahoo.com) */
#include <Simple_window.h>

[Code].....

Errors are:

Error12error C2512: 'Binary_tree' : no appropriate default constructor availablec:userscsdocumentsvisual studio 2012projects est_1 est_1 est_1.cpp91

13IntelliSense: no default constructor exists for class "Binary_tree"c:UsersCSDocumentsVisual Studio 2012Projects est_1 est_1 est_1.cpp91

View 4 Replies View Related

C :: How To Create Default Arguments

Oct 20, 2013

How to create default arguments in C? Is there any way to make default arguments ( i mean any alternative for them).

View 5 Replies View Related

C++ ::  How To Write A Default Constructor

Sep 27, 2013

How do you write a default constructor?I need to use a default constructor that will initialize the data members:
- salesPerson to “Unknown”
- noOfWeek to 13
- amount to point to an array of thirteen 0.00s.

This is my weeklysales class

class WeeklySales {
char* salesPerson;
double* amount; // Pointer to an array
int noOfWeek; // Size of the array
};

Here's my attempted code:

//default constructor
WeeklySales (){
salesPerson="Unknown";
noOfWeek = 13;
amount = 0.00;
}

View 9 Replies View Related

C++ :: Synthesized Default Constructor

Dec 25, 2013

A compiler auto created default constructor is called a synthesized default constructor. It will initialize the built-in members to 0 or not depends on where the class object is defined? if I define a class

class point{
public:
double x, y;
};

if I define point point1; in global scope then point1.x and point1.y will be initialized to 0, if I define point point2; in a local scope, then its x and y won't be initialized? If it is like this, then I believe if there are built-in type members in a class, then the synthesized default constructor is almost useless!

View 3 Replies View Related

C++ :: Multiple Default Constructors Specified

Dec 16, 2014

I have an inherited class that essentially manages a Qt Window.

It is as follows (prototype below):

class QTMyOpenGLWindow : public QWindow, protected QOpenGLFunctions {
Q_OBJECT

[Code] ....

Now, I can understand the confusion of the compiler, but the functionality as I laid it out works for me (I can create the class with just specifying the parent and also have the option of preventing auto-initialization when creating). But, is there a better approach?

View 3 Replies View Related

C++ :: Default Arguments And Omitting Only Some Of Them?

Apr 7, 2014

I am trying to figure out what's the best way to accomplish something like this:

void function(t1 a=0,t2 b=0){/*...*/};
t2 value;
function(value);

That would throw a compile error, since the first argument that is being passed to the function (value) is considered the first argument in the declaration (a), which is of type t1. So, is there a way to force my function to consider value as the second argument instead of the first one? I am aware that this could be done using overloading, but the larger the amount of arguments, the larger amount of possibilities, so it might end up with a huge list of overloads. The best case scenario would be being able to set things like:

void function(t1 a=16,t1 b=0,t2 c=1){/*body*/};
function(b=3,a=0);
but I'm not aware of such feature in C++.

Would it be possible to design some sort of macro system to take care of this?

View 10 Replies View Related

C++ :: Where Is DirectX SDK Installed By Default

Feb 13, 2013

So a long time ago I messed around with DirectX but I don't remember where it gets placed by default. I want to just get rid of the SDK and get the up to date version of it.

View 4 Replies View Related

C++ :: Application Default Parameters?

Mar 16, 2013

I have developed an application in C++ that creates some text files in a directory chosen by the user.

How can I ask the user set a Default Directory Path (and some other default parameters) so that she doesn't have to enter the same data in the GUI everytime the application is run.

The application has been developed using Qt Creator.

View 3 Replies View Related

C++ :: Template Class With Default Value?

Mar 22, 2013

refer to the code below, the attribute class is created with the value type and default value, but why it doesn't work for std::string?

#include <string>
#include <iostream>
using namespace std;

[Code].....

View 9 Replies View Related

C++ :: What Is Default Size Of STL Vector

Jan 30, 2012

For example, I have an empty vector of integer. If I keep calling push_back on vector, is it going to be out of memory?

View 8 Replies View Related

C++ :: Implicit Default Ctor - What Is It For

Apr 16, 2013

Implicit default ctor does not initialize the built-in data members, so what is it needed for?

View 5 Replies View Related

C++ :: Custom Exceptions With Default Behaviour

May 24, 2013

I've been pondering which of these 2 approaches would make for the best interface for a library: Defining custom exceptions with specific names for different error scenarios but with standard behaviour, or simply using the predefined exceptions from the STL.

This is my current approach:
Code:
namespace rpp
{
class ConnectionError : public std::exception
{
public:
ConnectionError(const std::string &p_err);

[Code] .....

This seems to make for more descriptive code but it adds no functionality and the implementations are completely identical, which seems "off" to me, somehow.

View 8 Replies View Related

C++ :: Creating Object Without Default Constructor

Jun 24, 2013

I have a question about the default constructor.

To my best understanding, the compiler will provide me with a deafult constructor only if there are no any user defined constructors, at all. Now consider the following code:

Code: class MyClass
{
private:
int m_data;
public:
MyClass(int init):m_data(init){cout<<"Ctr called"<<endl;}

[Code] ....

How is it that suddenly, there is a default constructor?

View 3 Replies View Related

C++ :: Input Showing As Default Values?

Nov 30, 2013

Same solution that I was having compiler errors on yesterday. We're working with inheritance and the program is supposed to be to create and display information for default Employee objects, Hourly Employee objects and Salaried Employee objects. Everything compiles as is, but I'm running into two issues that I can't figure out.

1) In both the hourly and salaried objects, the wage, hours, and management level attributes all displaying their default values. I'm almost positive that this has something to do with the str to int and str to double conversions that I'm using (currently have atoi and atof in the file, but I've also tried stringstream, but still had to same problem). Any thoughts as to what I'm missing?

2) the assignment calls for the Benefit benefit member in Employee.h to be protected. However this makes the member unaccessible when I try to use it in the EmployeeMain.cpp in order to set the input for the Benefit class members. I had to make the Benefit benefit member public again to get it to compile. How would I set the input for the Benefit class members while the Benefit benefit member is protected?

Solution files follow:

EmployeeMain.cpp
Code:
#include "Hourly.h"
#include "Salaried.h"
void DisplayApplicationInformation();
void DisplayDivider(string);
string GetInput(string);

[Code]....

View 3 Replies View Related

C++ :: Is UNICODE Enabled By Default In VC++ Express

Feb 25, 2014

For example if using FindFirstFile(...) it assumes your passing LCPWSTR and not LPCSTR.

I know I can use FindFirstFileA or FindFirstFileW so what is point of default if always UNICODE.

Which brings to my second question. If I say

FindFirstFile("C:", &fdat);

I get error cannot convert parameter 1 from 'const char [7]' to 'LPCWSTR'

I could say WCHAR fName = "C:"; and pass this variable instead. However is there a way to cast "C:" on-the-fly to LPCWSTR, I tried,

FindFirstFile((LCPWSTR)"C:", &fdat);

But it outputs a stream of LONGs to the console instead of filenames.

View 5 Replies View Related

C++ :: Why Default Argument For The Last Parameter Is Mandatory

Dec 1, 2014

I faced a compilation error in the following code :

Code:
#include <iostream>
using namespace std;
void addition(int a, int b = 2, int c);
int main()

[Code]......

My question is that when i have called addition() with the 3rd argument, then what is the necessity of having the default argument for the 3rd parameter ?

View 6 Replies View Related

C :: How To Write A Program That Gives Few Default Values

Oct 11, 2014

I would like to write a program that gives you a few default values. Now you can keep these values by pressing the enter key or you can change them by just typing in new ones and confirm the new values by pressing the enter key again.

Thats as far as i got on my own but it doesn't really work. what i can do to fix this.

Code:

#include<stdio.h>
#include <conio.h>
int getInt(int min, int max);
int main () {
int a[3] = {3,4};
int b;
int code;

[Code]...

View 2 Replies View Related

C# :: Default Equality Compare Of Guid?

Apr 27, 2012

I have a dictionary which maps a Guid to Orders, it contains like 350000 orders

Code:

Dictionary<Guid, Order> htPreOrders = new Dictionary<Guid, PreOrder>(350000);

Im trying to optimize it by replacing the IEqualityComparer by a custom one.

Code:

class Comp : IEqualityComparer<Guid> {
public bool Equals(Guid x, Guid y) {
return x == y;
}
public int GetHashCode(Guid obj) {
return obj.GetHashCode();
}

Dictionary<Guid, Order> htPreOrders = new Dictionary<Guid, PreOrder>(350000, new Comp()); would this be faster, or is that the same as the default equality compare of Guid?

View 3 Replies View Related

C++ ::  Default Document Folder Path

Mar 12, 2013

im trying to write a file to a default document folder..something like...

FILE* file;
file = fopen("%docdir% est.txt", "w");
fputs("Hello", file);
fclose(file);
"%docdir% est.txt" this isnt working for me, i have to write it as
"C:userspublicdocument est.txt"

any method to write directly to default document folder so it will work in most Windows ? for example in windows 7 this is the default folder "C:users publicdocument est.txt" in windows XP its different

i have to detect the windows version first, to write the correct path

View 3 Replies View Related

C++ :: Undefined Reference To Default Constructor?

Jul 28, 2013

trying to practice the object-oriented part of it by converting my java programs into c++. I believe I understand the concepts of a header file and declaring the functions in the .cpp files. I keep getting this "Undefined reference to NamedStorm::NamedStorm()" error.

NamedStorm.h
#ifndef NAMEDSTORM_H
#define NAMEDSTORM_H
#include <string>
#include <iostream>
// NEVER use using namespce in header, use std instead.
using std::string;

[code]....

View 7 Replies View Related

C++ :: Get User Input Displaying Default Value

Apr 5, 2013

I would like to get user input of some parameters value (mostly of type "double", but few of type "int") but displaying the default value at the place of input. If the user does not want to modify the value, he types "Enter" to pass; if the use wants to modify the value, he enters a new value at the place of the value by default, then types "Enter" to pass to the next parameter.

Here is a simplified example:

int main() {
double a = 1.5;
double b = 2.5;
double c = 3.5;
double x;

[code]...

However, this does not work. getline() cannot take double type, and I do not know whether the rest of the code is good and efficient.

View 6 Replies View Related

C++ :: Create Two Box In Program Using Default Constructor

Apr 6, 2014

Im trying to create two box in this program using the default constructor. When i call to try and display the info, it says that x, y, and z are not declared in this scope. i wanted to have the user cin the length, height, and width using the void setBox function.

#include<iostream>
#include<string>
#include<cstdlib>
using namespace std;
class Box{
public:

[code]....

View 2 Replies View Related

C++ :: Why Class Members Private By Default

Apr 14, 2013

The reason that class members are private by default is because, in general, an object of a class should be a self-contained entity such that the data that make the object what it is should be encapsulated and only changed under controlled circumstances. Public data members should be very much the exception. As you’ll see a little later in the chapter, though, it’s also possible to place other restrictions on the accessibility of members of a class.

View 17 Replies View Related

C++ :: Elements Of Array Will Be Default Initialized

Sep 1, 2014

I have a `char*` data-member in a class.

I get the following compiler error, the error refers to the char* data member:

error C4351: new behavior: elements of array will be default initialized.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved