mercredi 16 décembre 2015

Why is output of the following program how r u?

The following code is the basic implementation of the if - else conditional statements -

#include <stdio.h>
#include <stdlib.h>
int x;
int main() 
{
    if(x)
        printf("hi");
    else
        printf("how r u \n");
    return 0;
}

Aucun commentaire:

Enregistrer un commentaire