What is the out of following program?
#include <stdio.h>
int main() {
if (sizeof(int) > -1)
printf("Yes");
else
printf ("No");
return 0;
}
Answers
Answered by
1
Explanation:
this is the correct answer
Attachments:
Similar questions