answersLogoWhite

0

There is no wildcard character in C++.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Which wild card character is used to replace several unknown characters when searching for files on a Windows system?

* eg.: DIR C:\PROGRA*ILES


What are wild cards and explain their usage in pattern matching in unix?

wild cards are a special set of character used by the shell to match file name .A wild card "Stand in" for other character of the file name .The file name pattern is formed by ordinary character and meta character using well defined rules . When the pattern is used as an arguments with a command , the shell first suitably expand the arguments and then executes the command . The use of wild card make easier to deal with file in UNIX * any number of character - including zero character ? single character [abc] single character - either a,b,c [a-d] any single character in the range of a to d [!abc] a single character that is not a, b, and c [!a-d] any character not in the range of a to d


What is the use of c plus plus function atoi?

Converts a character to integer (if it is a numeric character)


Can an integer data type in c plus plus stores character value?

no


What is the character used at the end of executable statements in C plus plus?

The semi-colon converts a C++ expression into a statement.


What is manipulator in c plus plus language?

Manipulators are functions that change the formatting parameters on character streams.


How do you make the password character in Microsoft visual basic c plus plus?

The password character is usually an asterisk. ASCII code 42 (hex:2a).


How do you compare characters in c plus plus?

Characters are simply character codes, so they can be compared just like any other value. They can also be compared using literal character constants. The compiler will replace character literals with their equivalent character codes. char c = 'a'; // variable c is 0x61 (hex) or 97 (decimal). if( c 97 ){...} // true, 'a' is character code 97 decimal. if( c > 'b' ){...} // false, 'a' is not greater than 'b' (that is, 97 is not greater than 98).


How do you display del symbol on output screen using C Plus Plus?

The del character, #255, has no symbol. It is a non-printing character, so you cannot display it on the screen.


Which function reads character into an array specified bt its parameter in c plus plus?

void foo (char& c) { cin >> c; } int main() { char ch[10] {}; for (size_t c=0; c!=10; ++c) foo (c[0]); }


What does the abbreviation W C mean in the daily MLB standings which appear in the newspapers?

WC appears next to GB (games behind). It represents the number of Wild Card (games behind) for end of season play.


In c plus plus 5.02 how many memory cells are required to store a single character?

1 byte.. (1 cell)