TutorialsBazaar

← Back

Learn Java Programming

Module 11/20

Core Java - Strings

Module 11 of 20

Strings in Java are objects that represent sequences of characters.

Java ā¤ŽāĨ‡ā¤‚ String characters ⤕āĨ€ sequence ⤕āĨ‹ represent ā¤•ā¤°ā¤¤ā¤ž ā¤šāĨˆāĨ¤

#include <stdio.h>

int main() {
    printf("Welcome to Core Java - Strings");
    return 0;
}