If null and 0 are equivalent as null pointer constants, which should I use?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you avoid including a header more than once?
What is the role of && operator in a program code?
How can I get random integers in a certain range?
What is the right type to use for boolean values in c? Is there a standard type?
Why malloc is faster than calloc?
What is a macro in c preprocessor?
find the sum of two matrices and WAP for it.
writw a program to insert an element in the begning of a doubly linked list
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is pre-emptive data structure and explain it with example?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }