সি প্রোগ্রাম এ সমস্যা, এর সমাধান কি?

#include int main() { // test program - comment 1 printf("Hello "); /* We have printed Hello, now we shall print World. Note that this is a multi-line comment */ printf("World"); // printed world return 0; } প্রোগ্রাম টি রান করলে শুধু World প্রিন্ট হচ্ছে আমি সম্পুর্ন প্রিন্ট করতে চাই. প্রোগ্রাম এ কি ভুল আছে?
2740 views

2 Answers

#include

int main()

{

  printf("Hello \t");

  printf("World");

  return 0;

}

2740 views Answered

#include
#include

void main() 
{
clrscr(); 
// test program - comment 1 
printf("Hello"); 
/* We have printed Hello, now we shall print World. Note that this is a multi-line comment */
        printf("\nWorld"); 
// printed world 
getch(); 
}

2740 views Answered

Related Questions

Next steps