Who is the main contributor in designing the c language after dennis ritchie?
No Answer is Posted For this Question
Be the First to Post Answer
How can you be sure that a program follows the ANSI C standard?
Why do we use header files in c?
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"); }
Can a function argument have default value?
What does typeof return in c?
Are pointers really faster than arrays?
What is formal argument?
How to add two numbers with using function?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
Why is c faster?
how to set Nth bit of variable by using MACRO