which of the following shows the correct hierarchy of arithmetic operations in C
a) (), **, * or/,+ or -
b) (),**,*,/,+,-
c) (),**,/,*,+,-
d) (),/ or *,- or +
No Answer is Posted For this Question
Be the First to Post Answer
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
say the following declaration is correct nr not. int b=a,n=0;
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Write a program of prime number using recursion.
How can I run c program?
When is a null pointer used?
Tell me can the size of an array be declared at runtime?
What is p in text message?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
What is string constants?
Compare interpreters and compilers.