if a is an integer variable, a=5/2; will return a value
a) 2.5
b) 3
c) 2
d) 0
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int i=5; printf("%d",i++ + ++i); }
What is context in c?
Which programming language is best for getting job 2020?
What is meant by realloc()?
What is the difference between ++a and a++?
how can i print "hello"
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
write a program to generate 1st n fibonacci prime number
which do you prefer C or Pascal?
What are signals in C?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program