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
Compare and contrast compilers from interpreters.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Why do we need volatile in c?
What is #pragma statements?
What are the advantages of union?
What are the types of unary operators?
Do pointers need to be initialized?
Explain which function in c can be used to append a string to another string?
Explain how can I write functions that take a variable number of arguments?
how we can make 3d venturing graphics on outer interface
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is sizeof return in c?
What is the use of #include in c?
Explain how can type-insensitive macros be created?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?