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
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
If the static variable is declared as global, will it be same as extern?
What is the difference between strcpy() and memcpy() function in c programming?
What are the concepts introduced in OOPs?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Write a small C program to determine whether a machine's type is little-endian or big-endian.
compare array with pointer?
Method Overloading exist in c ?
What does c in a circle mean?
Explain what will the preprocessor do for a program?
consagous technology placement paper
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none