1 solutions

  • 0
    @ 2025-11-5 16:19:33

    C :

    #include <stdio.h>
    int main()
    {
    	printf("This is my first c program!");
    	return 0;
    }
    

    C++ :

    #include<stdio.h>
    int main()
    {
      printf("This is my first c program!\n");
      return 0;
    }  
    

    Pascal :

    begin 
           Writeln('This is my first c program!'); 
    end.
    

    Python :

    # coding=utf-8
    print("This is my first c program!")
    
    
    • 1

    Information

    ID
    17684
    Time
    1000ms
    Memory
    12MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By