Answer Posted / sindhu
#define my main()
my()
{
printf("hello frnz");
}
| Is This Answer Correct ? | 14 Yes | 7 No |
Post New Answer View All Answers
How main function is called in c?
What are header files in c programming?
Explain the meaning of keyword 'extern' in a function declaration.
What is meant by high-order and low-order bytes?
What does 4d mean in c?
What is data structure in c programming?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Explain how do you list files in a directory?
In C language what is a 'dangling pointer'?
How do you search data in a data file using random access method?
What are header files and what are its uses in C programming?
What is a far pointer in c?
What is #error and use of it?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Write a program to reverse a given number in c language?