Hierarchy decides which operator
a) is most important
b) is used first
c) is fastest
d) operates on largest numbers
Answer Posted / md mastan
Based on priority (or) precedence.
answer:a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a 'null pointer assignment' error?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
How can I open a file so that other programs can update it at the same time?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Explain a pre-processor and its advantages.
What 'lex' does?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is the advantage of c?
What is malloc and calloc?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What are the advantages of Macro over function?
which is an algorithm for sorting in a growing Lexicographic order
What should malloc() do?