C Programming and Technical Programming Technical

int main()
{
unsigned int =0xffff;
x=x<>3;
printf("%x",x);
}

Read Solution (Total 5)

C Other Question

int main()
{
int x=0xffff;
x=x<>3;
printf("%x",x);
}
Function main is the starting point of execution of a program. Which of the following options shall help in making an executable program without the
use of main function in the program?
1. Any function can be made and marked as starting point using a language dependent syntax
2. Two macros can be used. One to hold the name of a function and its working and the other to call the first macro
3. Any program without a main function shall not do anything but can only produce a blank screen
4. It is not possible to run a program without a main function in a program