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 |
write a c program to find largest of three numbers using simple if only for one time.
how to write optimum code to divide a 50 digit number with a 25 digit number??
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
What is data type long in c?
How can I write a function analogous to scanf?
How do I send escape sequences to control a terminal or other device?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Tell me with an example the self-referential structure?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
What are all different types of pointers in c?
Is fortran still used today?