In a byte, what is the maximum decimal number that you can accommodate?
No Answer is Posted For this Question
Be the First to Post Answer
Do you have any idea how to compare array with pointer in c?
what r callback function?
What's the best way of making my program efficient?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What are the types of bitwise operator?
What is meant by high-order and low-order bytes?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
How do you generate random numbers in C?
What are loops c?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How pointer is different from array?