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 |
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
How can I return multiple values from a function?
How can I call a function, given its name as a string?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is the difference between ‘g’ and “g” in C?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is c preprocessor mean?
what is the use of keyword volatile??
What is the most efficient way to count the number of bits which are set in a value?
what is difference between strcmp & palindrome?
What is the purpose of clrscr () printf () and getch ()?