Write a simple code fragment that will check if a number is positive or negative.
No Answer is Posted For this Question
Be the First to Post Answer
which is the best antivirus and how to update it
How can I read in an object file and jump to locations in it?
What is getch?
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Why flag is used in c?
What is function what are the types of function?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
Does sprintf put null character?