Answer Posted / gnaneshwar
In the C programming language a string is actually the same as an array of characters. The last character in a C string is a zero byte which indicates the end of the string.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why pointers are used in c?
write a program to copy the string using switch case?
Explain union.
What language is windows 1.0 written?
What is c standard library?
Why we not create function inside function.
Explain how to reverse singly link list.
What is the benefit of using an enum rather than a #define constant?
Explain About fork()?
What are derived data types in c?
How do I round numbers?
How can I remove the leading spaces from a string?
What are the different types of pointers used in c language?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
write a c program to find the sum of five entered numbers using an array named number