Answer Posted / ravi
a=5/7
a=0;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
I came across some code that puts a (void) cast before each call to printf. Why?
why we wont use '&' sing in aceesing the string using scanf
Not all reserved words are written in lowercase. TRUE or FALSE?
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); } }
What is build process in c?
Which is best linux os?
How does free() know explain how much memory to release?
What are valid signatures for the Main function?
Who developed c language?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is scope and lifetime of a variable in c?
What is pointer in c?
regarding pointers concept
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is memcpy() function?