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 |
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
What does extern mean in a function declaration?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is Your Name :)
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
What do you mean by keywords in c?
What is header file definition?
How do you print only part of a string?
Write programs for String Reversal & Palindrome check
Will Macros support multiple arguments ?