character array A[12] can hold
Answers were Sorted based on User's Feedback
Answer / naresh lingampally
What is this null string;
array addresses would be a[0]..a[11] if i am not wrong ...
so a[11] accepts(can store) up to 11 character elements
so can any one explain.....
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / manish malik
It will hold the character A[0}....A[11.and hold the null
character at a[12] position.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / hardeep singh
this question is wrong. array name should be in small
letter.because c and c++ are case senstive.
| Is This Answer Correct ? | 0 Yes | 8 No |
What is switch in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is static volatile in c?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
Why we use stdio h 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
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What does main () mean in c?
Explain union.
What is fflush() function?
is assignment operator is arithmatic or not
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }