Why is C called a middle-level language?
Answer / nashiinformaticssolutions
It combines features of high-level and low-level languages.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how are portions of a program disabled in demo versions?
What is void main ()?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the meaning of c in c language?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
Is c procedural or object oriented?
Write a program to find the biggest number of three numbers in c?
Explain function pointer with exapmles.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +