Can we declare function inside main?
No Answer is Posted For this Question
Be the First to Post Answer
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
write a program to print calender using for loop.
Can you please explain the difference between syntax vs logical error?
what is the advantage of software development
What is switch in c?
Differentiate between null and void pointers.
list the no of files created when c source file is compiled
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
write a program in c to print **** * * * * ****
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
How do you sort filenames in a directory?