Write the test cases for checking a variable having value in
range -10.0 to +10.0?
No Answer is Posted For this Question
Be the First to Post Answer
what type of questions arrive in interview over c programming?
Bit swapping
#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() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
How we can set and clear bit in a byte using macro function?
string reverse using recursion
What are the 4 types of unions?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
i want to know the procedure of qualcomm for getting a job through offcampus
What is 02d in c?
print 1-50 with two loop & two print Statement
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9