Whether there can be main inside another main?If so how does
it work?
Answer Posted / guest
nested main
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Sir i need notes for structure,functions,pointers in c language can you help me please
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is a #include preprocessor?
Differentiate between Macro and ordinary definition.
What is the difference between malloc calloc and realloc in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What's the right way to use errno?
What are preprocessor directives in c?
Are the variables argc and argv are always local to main?
Why functions are used in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Tell me can the size of an array be declared at runtime?
what will be the output for the following main() { printf("hi" "hello"); }
What is string concatenation in c?