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 |
How to write a code for reverse of string without using string functions?
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
Explain what is the benefit of using const for declaring constants?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
why TCS selected more student in the software field from all institution.
Why pointers are used?
What is optimization in c?
Can we add pointers together?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
What is the use of parallelize in spark?
declare afunction pointer to int printf(char *)?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }