WAP – represent a char in binary format
Answer Posted / johnson
?eh? this doesn't make sense. The answer will obviously be
11111111.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What the different types of arrays in c?
What is a volatile keyword in c?
Is c pass by value or reference?
How is a macro different from a function?
code for quick sort?
Why string is used in c?
What is bss in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
How can I write functions that take a variable number of arguments?
What is the use of bit field?
What does d mean?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is the use of define in c?
What is the right way to use errno?
What is && in c programming?