What is "Hungarian Notation"?
No Answer is Posted For this Question
Be the First to Post Answer
what are the stoge class in C and tel the scope and life time of it?
Explain #pragma in C.
What is the best way to store flag values in a program?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
WHAT IS LOW LEVEL LANGUAGE?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
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
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
How can I determine whether a machines byte order is big-endian or little-endian?
char ch="{'H','I',0};printf("%s",ch);what is output
If input is 123 then how to print 100 and 20 and 3 seperately?