Answer Posted / hemanthkumar
in c language the way of code writing is mandatory
u must write the program in a specific way
ex;
#include<stdio.h>
main()
{
//declarations
//functions
}
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Can we add pointers together?
What are the two forms of #include directive?
What is #include called?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What are conditional operators in C?
Can we declare function inside main?
How many identifiers are there in c?
What is difference between far and near pointers?
What is cohesion in c?
How can I direct output to the printer?
What is a buffer in c?
Why is c called c not d or e?
In a switch statement, explain what will happen if a break statement is omitted?
int i=10; printf("%d %d %d", i, i=20, i);
Differentiate between new and malloc(), delete and free() ?