Skip to content
Related Articles
Open in App
Not now

Related Articles

Results of comparison operations in C and C++

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 28 May, 2017
Improve Article
Save Article
Like Article

In C, data type of result of comparison operations is int. For example, see the following program.




#include<stdio.h>
int main()
{
    int x = 10, y = 10;
    printf("%d \n", sizeof(x == y));
    printf("%d \n", sizeof(x < y));
    return 0;
}


Output:

4
4

Whereas in C++, type of results of comparison operations is bool. For example, see the following program.




#include<iostream>
using namespace std;
  
int main()
{
    int x = 10, y = 10;
    cout << sizeof(x == y) << endl;
    cout << sizeof(x < y);
    return 0;
}


Output:

1
1

This article is contributed by Rajat. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!