Showing posts with label C-True/False. Show all posts
Showing posts with label C-True/False. Show all posts

C-True/False_1.5

#include "stdio.h"
int main(void)
{
    int i=7;
    double f=5.5;
    char c= 'w';

C-True/False_1.4

#include "stdio.h"
int main(void)
{
    int i=7;
    double f=5.5;

C-True/False_1.3

#include "stdio.h"
int main(void)
{
int i=7;
double f=5.5;
char c= 'w';

C-True/False_1.2

#include "stdio.h"
int main(void)
{
int i=7;
double f=5.5;
char c= 'w';

C-True/False_1.1

#include "stdio.h"
int main(void)
{
int i=1,j=2,k=3;
printf("%d\n",i
printf("%d\n",(i+j)>=k);