Computer Science, asked by Anonymous, 3 months ago

plz answer the question i will mark him as brainlist​

Attachments:

Answers

Answered by bmuthumanikandan5
1

Explanation:

1.#include <stdio.h>

void main()

{

int num;

printf("Input a number :");

scanf("%d", &num);

if (num >= 0)

printf("%d is a positive number \n", num);

else

printf("%d is a negative number \n", num);

}

Similar questions