Table of Contents
Example
Output
Home Backend Development C++ In C/C++, the function of iswpunct() function is to determine whether a wide character is a punctuation mark.

In C/C++, the function of iswpunct() function is to determine whether a wide character is a punctuation mark.

Sep 01, 2023 pm 04:09 PM
c/c Punctuation iswpunct()

In C/C++, the function of iswpunct() function is to determine whether a wide character is a punctuation mark.

The function iswpunct() is used to check whether the passed wide character is a punctuation mark. If it is not a punctuation mark, zero is returned, otherwise a non-zero value is returned. It is declared in the "cwctype" header file.

The following is the syntax of iswpunct():

int iswpunct(wint_t character);
Copy after login

This is an example of iswpunct()

Example

#include<cwctype>
#include<stdio.h>
using namespace std;
int main() {
   wint_t a = &#39;!&#39;;
   wint_t b = &#39;a&#39;;
   if(iswpunct(a))
   printf("The character is a punctuation.");
   else
   printf("\nThe character is not a punctuation.");
   if(iswpunct(b))
   printf("\nThe character is a punctuation.");
   else
   printf("\nThe character is not a punctuation.");
   return 0;
}
Copy after login

Output

The character is a punctuation.
The character is not a punctuation.
Copy after login

In the above program, two wide characters are declared as a and b. Checks whether the passed characters are punctuation marks.

wint_t a = &#39;!&#39;;
wint_t b = &#39;a&#39;;
if(iswpunct(a))
printf("The character is a punctuation.");
else
printf("\nThe character is not a punctuation.");
if(iswpunct(b))
printf("\nThe character is a punctuation.");
else
printf("\nThe character is not a punctuation.");
Copy after login

The above is the detailed content of In C/C++, the function of iswpunct() function is to determine whether a wide character is a punctuation mark.. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

In C/C++, the strcmp() function is used to compare two strings In C/C++, the strcmp() function is used to compare two strings Sep 10, 2023 am 11:41 AM

Thefunctionstrcmp()isabuilt-inlibraryfunctionanditisdeclaredin“string.h”headerfile.Thisfunctionisusedtocomparethestringarguments.Itcomparesstringslexicographicallywhichmeansitcomparesboththestringscharacterbycharacter.Itstartscomp

In C/C++, the fseek() function is used to move the position of the file pointer in the file. In C/C++, the fseek() function is used to move the position of the file pointer in the file. Sep 02, 2023 pm 03:57 PM

fseek() is used in C language to move the file pointer to a specific location. Offsets and streams are the targets of pointers, and they are given in function arguments. If successful, it returns zero. If unsuccessful, it returns a non-zero value. The following is the syntax of fseek() in C language: intfseek(FILE*stream,longintoffset,intwhence) Here are the parameters used in fseek(): stream− This is the pointer used to identify the stream. offset − This is the number of bytes from the position. whence−This is where the offset is added. whence is given by the following constants

How to detect integer overflow in C/C++? How to detect integer overflow in C/C++? Aug 31, 2023 pm 01:53 PM

The only safe way is to check before the overflow occurs. There are some informal ways to check for integer overflow though. So, if your goal is to detect overflow when adding unsigned integers, you can check whether the result is actually smaller than the two added values. For example, the sample code unsignedintx,y;unsignedintvalue=x+y;booloverflow=value<x;//Alternatively "value<y" should also work. This is because if x and y are both unsigned integers, if they are added and overflow, their Values ​​cannot be greater than any of them, as they require

Implementing the 0/1 knapsack problem in C/C++ using the branch-and-bound method Implementing the 0/1 knapsack problem in C/C++ using the branch-and-bound method Sep 04, 2023 pm 08:17 PM

The idea is to realize the fact that greedy methods provide the best solution to the fractional knapsack problem. To check if a specific node can provide us with a better solution, we calculate the best solution (by node) implementing a greedy approach. If the greedy method itself computes more solutions than the best solution so far, then we cannot get to a better solution through the nodes. The complete algorithm is as follows - All items are sorted in descending order of value per unit weight ratio so that the upper limit can be calculated using the greedy method. Initialize the maximum profit, for example maxProfit=0 to create an empty queue Q. Decision virtual nodes create trees and insert or queue them into Q. The profit and weight of the virtual node are 0. Perform the following operations when Q is not empty or empty. create

How to use enumerations in C/C++? How to use enumerations in C/C++? Aug 28, 2023 pm 05:09 PM

Enumeration is a user-defined data type in C language. It is used to give names to integer constants, making programs easier to read and maintain. The keyword "enum" is used to declare an enumeration. The following is the syntax of enumerations in C language: enumenum_name{const1,const2,.....};Theenumkeywordisalsousedtodefinethevariablesofenumtype.Therearetwowaystodefinethevariablesofenumtypeasfollows.enumweek{sunday,monday,tuesday,

C/C++ program for greedy algorithm to find the minimum number of coins C/C++ program for greedy algorithm to find the minimum number of coins Sep 19, 2023 pm 11:01 PM

The greedy algorithm is an algorithm used to find the optimal solution to a given problem. The greedy algorithm works by finding a local optimal solution for each part (the optimal solution to one part of the problem), thus showing that a global optimal solution can be found. In this problem, we will use the Greedy Algorithm algorithm to find the minimum number of coins/notes that can make up a given sum. For this we will consider all valid coins or banknotes, i.e. denominations {1,2,5,10,20,50,100,200,500,2000}. We need to return the number of coins/notes needed to make up the sum. Let us give a few examples to understand the context better - Example 1 - Input: 1231 Output: 7 Description - We need two 500 rupee notes

Some interesting observations about the C/C++ ternary operator Some interesting observations about the C/C++ ternary operator Sep 15, 2023 pm 07:29 PM

We know that the ternary operator is implemented instead of if..else clause. It is represented by ?:. '? The 'symbol is equivalent to the if part, and ':' is equivalent to the else part. The following 3 programs explain some interesting observations in the case of the ternary operator. The following program compiles without any errors. The return type of a ternary expression is expected to be float (as in exp2), and exp3 (i.e., a literal zero-int type) is implicitly convertible to float. #include<iostream>usingnamespacestd;intmain(){ inttest1=0;&

In C/C++, 4-dimensional array In C/C++, 4-dimensional array Sep 01, 2023 pm 11:57 PM

A 4-dimensional array is an array composed of 3-dimensional arrays. AlgorithmBegin.Declarethevariables.Declarethearrayelements.Takethenoofelementsasinput.Taketheelementsasinput.Printtheelementsstoredinarray.End.This is an example of a 4D array. #include<iostream>usingnamespacestd;intmain(){ inta[2][2][3

See all articles