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
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What is getche() function?
What are different types of operators?
What library is sizeof in c?
Explain what is a static function?
How can I change the size of the dynamically allocated array?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is ambagious result in C? explain with an example.
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Differentiate between Macro and ordinary definition.
Explain what are binary trees?
What is an identifier?
What are the 5 data types?
How do you determine whether to use a stream function or a low-level function?
What is hash table in c?