What is the purpose of the preprocessor directive error?
No Answer is Posted For this Question
Be the First to Post Answer
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
How to add two numbers with using function?
What is the difference between #include and #include 'file' ?
What is the use of the restrict keyword?
Write a code of a general series where the next element is the sum of last k terms.
What is preprocessor with example?
write a C program to print the program itself ?!
What is the scope of static variables?
Program to trim a given character from a string.
Write a program to generate the Fibinocci Series
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
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?