Answer Posted / swe
PrimitiveType
ReferenceType
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What are the different types of linkage exist in c?
Is there any data type in c with variable size?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What are reserved words with a programming language?
What is the best way to store flag values in a program?
Does sprintf put null character?
Write a program of prime number using recursion.
Distinguish between actual and formal arguments.
What is meant by int main ()?
Why is a semicolon (;) put at the end of every program statement?
Why is it that not all header files are declared in every C program?
What are the three constants used in c?
Explain what is wrong with this program statement?
What are Macros? What are its advantages and disadvantages?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }