Explain the difference between #include "..." And #include <...> In c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between NULL and NUL?
What is the difference between a free-standing and a hosted environment?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Explain what is the heap?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
how to count no of words,characters,lines in a paragraph.
WAP – represent a char in binary format
What is the meaning of && in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is the meaning of typedef struct in c?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
what is the diffrenet bettwen HTTP and internet protocol