Question from the Language C - Fundamentals test

How to instantiate the variable "single" to see the message "you are a heart to take"?

Medium

How should we instantiate the variable “single” to see the message “you are a heart to take”?

#include <stdio.h>

int main() 
    {
        int single;
        if(single)
        {
            printf("you are a heart to take\n");
        } 
        else
        {
        printf("your heart is taken\n");
        }
        return 0;
    } 

Author: KahinaStatus: Published(Update)Question passed 122 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!