in which language c language is written?
Answers were Sorted based on User's Feedback
Write a c program using for loop in switch case?
write a C code To reverse a linked list
Explain what is operator promotion?
What's the total generic pointer type?
What is the difference b/w Structure & Array?
How can I change the size of the dynamically allocated array?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is function pointer c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is a buffer in c?
What are identifiers and keywords in c?
Tell me what are bitwise shift operators?