Answer Posted / rajkumar
I think its possiblle through macros ....like this
#define main() start
start
{
printf("Hai");
}
| Is This Answer Correct ? | 8 Yes | 11 No |
Post New Answer View All Answers
Describe the steps to insert data into a singly linked list.
Explain how can a program be made to print the line number where an error occurs?
Explain what are the standard predefined macros?
What is ## preprocessor operator in c?
What are the different types of endless loops?
Explain how do you convert strings to numbers in c?
What are local static variables?
Write a program which returns the first non repetitive character in the string?
What does %2f mean in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is getch?
Write a program to check prime number in c programming?
Explain built-in 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
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .