Why c is called free form language?
No Answer is Posted For this Question
Be the First to Post Answer
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is meant by preprocessor in c?
What is multidimensional arrays
main() {int a=200*200/100; printf("%d",a); }
Total of how many functions are available in c?
Explain what are binary trees?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
what value is returned to operating system after program execution?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
how to build a exercise findig min number of e heap with list imlemented?
what is the definition of storage classes?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);