1.Why do you call C is middle level language?
2.Why do you call C is userfriendly language.
Answers were Sorted based on User's Feedback
1.bcz it has the characteristic of low level language and
the feature of high level language.So it is called as middle
level language......
2.I think C is not user friendly bcz there are many
rules,regulations that means some predefined syntax to do it.
User frendly language is html, Any thing we can write on the
html file and that can run..
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / anusha
1.C is called as a middle level lang bcoz its a commbination
of both high level lang and the low level lang .
| Is This Answer Correct ? | 7 Yes | 3 No |
give an example of type casting by a simple c program
How are strings stored in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What is the difference between macros and inline functions?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
Explain enumerated types in c language?
What is the use of #define preprocessor in c?
Can a pointer be null?
What are the 32 keywords in c?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How many data structures are there in c?
A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone