What is the exact difference between '\0' and ""
Answers were Sorted based on User's Feedback
Answer / guest
\0 is end of the string.
"" is empty charater, each space is also refered as
character
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / naresh lingampally
`\0' (ascii NUL, which has value zero)
"" no spaces nothing implemented
.
I am confused can any one explain !!
| Is This Answer Correct ? | 1 Yes | 0 No |
main() { int i=400,j=300; printf("%d..%d"); }
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is the difference between GETS();AND SCANF();
What is the general form of a C program?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
What is an endless loop?
What will be your course of action for a push operation?
Are negative numbers true in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is binary tree in c?
Is it better to use malloc() or calloc()?
Implement bit Array in C.