Explain logical errors? Compare with syntax errors.
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
What is key word in c language?
What is a void * in c?
Derive the complexity expression for AVL tree?
What tq means in chat?
how to display 2-D array elements in spiral
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is "Hungarian Notation"?
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
What is main () in c?
Explain union. What are its advantages?