R
Q. What is the output of the C Program?
int main() { float a=10.0; a = (int)a % 3; printf("%f", a); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which format specifier is used to read and print the string using printf() and scanf() in C?
Q. When the condition of if statement is false, the flow of code will ___.
Q. What is the output of this program?
Q. What is the priority of operators *, / and % in C language.?
Q. What do you call STAR * and Ampersand & in a c program context.?
Q. Which option should be selected to work the following C expression?
Q. How to write a comment on a single line?
Q. Array is an example of _______ type memory allocation.
Q. What does the following declaration mean? int (*ptr) [10];
Discusssion
Login to discuss.