Can we declare function inside main?
No Answer is Posted For this Question
Be the First to Post Answer
What is #include stdlib h?
What are the uses of pre-processor directives?
Explain what are multidimensional arrays?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
what is differnence b/w macro & functions
Is c procedural or object oriented?
Why does this code crash?
why 'c' is called middle level language.
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
list the no of files created when c source file is compiled
Can a function argument have default value?