Why doesnt this code work?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best organizational structure?
Explain how do you generate random numbers in c?
How can I ensure that integer arithmetic doesnt overflow?
What is the difference between text and binary i/o?
What is break statement?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
What does == mean in texting?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
write a program to display & create a rational number
how to TOGGLE Nth bit of variable in a MACRO
What is wrong with this program statement?