Answer Posted / prabu
yes there is no return a value for void main function
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the header files used in c language?
Explain what is the benefit of using const for declaring constants?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is wrong with this program statement? void = 10;
What do you mean by dynamic memory allocation in c?
What are identifiers c?
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
Explain how can you determine the size of an allocated portion of memory?
What are compound statements?
How many bytes is a struct in c?
What is a static variable in c?
Explain how are 16- and 32-bit numbers stored?
How can a string be converted to a number?
regarding pointers concept
Explain about block scope in c?