How do you determine the length of a string value that was stored in a variable?
No Answer is Posted For this Question
Be the First to Post Answer
In which category does main function belong??
What is a memory leak? How to avoid it?
Hi, main() { } Is a user defined function or Built in Functionn
What is pragma in c?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
Why do we use null pointer?
Which is better between malloc and calloc?
explain about storage of union elements.
How can you tell whether two strings are the same?
How do you use a pointer to a function?
Explain how are portions of a program disabled in demo versions?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none