write a program without using main function?
Answers were Sorted based on User's Feedback
Answer / raavi.swami
#include<stdio.h>
#define begin main
void begin()
{
printf("Hello");
}
Is This Answer Correct ? | 27 Yes | 2 No |
Answer / siva koratani
#include<stdio.h>
#define begin m##a##i##n
void begin()
{
printf("Hello");
}
Is This Answer Correct ? | 7 Yes | 2 No |
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is the code for 3 questions and answer check in VisualBasic.Net?
What is linear search?
Tell me what is the purpose of 'register' keyword in c language?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is a stream?
what is a c-language.what is do.
What is function pointer c?
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
Explain what does a function declared as pascal do differently?
What is the difference between call by value and call by reference in c?