what is the difference between NULL('\0') and 0?
Answer Posted / palani222samy
NULL is an the empty value but 0(zero) is an one of the value
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
What is sizeof array?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is c preprocessor mean?
How do you list files in a directory?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is a MAC Address?
Can you please explain the difference between syntax vs logical error?
What is action and transformation in spark?
What is c variable?
How to compare array with pointer in c?
Is c compiled or interpreted?
What are pointers? Why are they used?
Differentiate between the expression “++a” and “a++”?
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