Answer Posted / surya bhagavan s
#include<stdio.h>
#include <unistd.h>
_start()
{
_exit(my_main());
}
int my_main(void)
{
printf("Hello\n");
return 42;
}
for compilation
gcc -o3 -nostartfiles example.c
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Explain the Difference between the New and Malloc keyword.
What do you mean by a sequential access file?
How to declare pointer variables?
What are the two types of functions in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is the difference between text and binary i/o?
What is c standard library?
What is the difference between call by value and call by reference in c?
What is indirection?
What is bubble sort in c?
how could explain about job profile
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Explain the meaning of keyword 'extern' in a function declaration.
When should we use pointers in a c program?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above