Why c is procedure oriented?
No Answer is Posted For this Question
Be the First to Post Answer
What's the best way to declare and define global variables?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Where are some collections of useful code fragments and examples?
Why is sizeof () an operator and not a function?
What is structure packing ?
In C, What is the #line used for?
how to find the binary of a number?
What does *p++ do? What does it point to?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
How can I pad a string to a known length?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What is a newline escape sequence?