Can we include one C program into another C program if yes how?
Answer Posted / abhradeep chatterjee
I think its not possible.
| Is This Answer Correct ? | 12 Yes | 12 No |
Post New Answer View All Answers
How can you return multiple values from a function?
Is c is a middle level language?
Explain the difference between strcpy() and memcpy() function?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Is boolean a datatype in c?
How can I run c program?
What is actual argument?
Explain what are the __date__ and __time__ preprocessor commands?
What does %p mean?
How can I write a function that takes a format string and a variable number of arguments?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the significance of c program algorithms?
What are c identifiers?
What is c method?