Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9159309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T13:27:39+00:00 2026-06-17T13:27:39+00:00

I have a following code: #include <iostream> int main() { int i = 3;

  • 0

I have a following code:

#include <iostream>
int main() {
    int i = 3;
    do {
        (i == 3) ? (std::cout << "Is 3.\n") : ++i;
        ++i;

    } while ( i < 4 );
    return 0;
}

And got a following error in response:

ternary.cc: In function ‘int main()’:
ternary.cc:5:43: error: invalid conversion from ‘void*’ to ‘int’ [-fpermissive]

What is wrong with my code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T13:27:40+00:00Added an answer on June 17, 2026 at 1:27 pm

    You’re abusing the ternary operator a bit, for any given a ? b : c I would expect the result to be stored somewhere and I wouldn’t recommend b or c having side effects.

    The root of your problem is that the ternary operator requires b and c to be the same/equivalent type. Andrew’s explanation that they need to be able to “resolve to the same … type” is probably more accurate.

    For what it’s worth, you can use a sleight-of-hand (or even more abuse, depending on your perspective) to make the code work:

    #include <iostream>
    int main() {
        int i = 3;
        do {
            (i == 3) ? (std::cout << "Is 3.\n", 0) : ++i;
            ++i;
    
        } while ( i < 4 );
        return 0;
    }
    

    Or, more explicitly, make sure both are the same type:

    #include <iostream>
    int main() {
        int i = 3;
        do {
            (i == 3) ? (std::cout << "Is 3.\n") : (void*)++i;
            ++i;
    
        } while ( i < 4 );
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: #include<iostream> #include<stdio.h> using namespace std; int main(){ char* username,
I have the following code: #include<iostream> using namespace std; typedef void (*HandlerFunc)(int, int); HandlerFunc
I have the following code #include <iostream> using namespace std; void WaitForEnter() { while(1)
I have the following code #include <iostream> #include <vector> using namespace std; int distance(vector<int>&
i have following code for heapsort #include <iostream> using namespace std; void exch(int a[],int
I have following code: #include <cstring> #include <boost/functional/hash.hpp> #include <iostream> int main(int argc, char
I have a question about the following code : #include <iostream> #include <ctime> int
I have the following code: #include <iostream> #include <vector> using namespace std; struct A{};
I have the following code compiled by gcc: #include <iostream> using namespace std; class
i have the following code: #include <stdio.h> int main(void) { float a[4] __attribute__((aligned(0x1000))) =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.