What is use of #include in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are actual arguments?
Differentiate fundamental data types and derived data types in C.
Given an unsigned integer, find if the number is power of 2?
Write a program to identify if a given binary tree is balanced or not.
What is wrong with this declaration?
What is ambagious result in C? explain with an example.
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
how to go with this?
How do you define structure?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
what is the difference between structure and union?
What is table lookup in c?