What is difference between %d and %i in c?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Compare and contrast compilers from interpreters.
how to find sum of digits in C?
wat are the two methods for swapping two numbers without using temp variable??
How do I round numbers?
can we execute the program with the object file
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
How can you find out how much memory is available?
What is C language ?
Write a program to print "hello world" without using a semicolon?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none