Home / Computer Science (page 12)

Computer Science

Computer Science

Unlocking the Magic of Variables in C Programming

Variables are the backbone of C programming, allowing you to manipulate data efficiently and create dynamic, responsive code. Understanding the different types of variables and their scopes is crucial for becoming a proficient C developer. So, go ahead and experiment with these versatile data holders to unlock the full potential of your coding adventures in C

Read More »

First C Program

First C Program: First every c program must have one main() function. C program execution always start from main(). Every statement ends with semicolon(;). #include <stdio.h> #include<conio.h> void main() { printf(“Hello, world\n”); getch(); } #include <stdio.h> includes the standard input output library functions. The printf() function was defined in stdio.h file. #include <conio.h> includes …

Read More »

String Builder : A Comprehensive Guide

String Builder

String builder in Java is a class. It is like string objects, except that they can be modified. String Builder class is available in java.lang package. Internally String builder objects are treated like variable length arrays which contain sequence of characters. At any point of time, the length and content …

Read More »

Oracle – Tutorial Part -1

Know the database management concept is essential to everyone, as a fresher must have knowledge in any database like MySql, Oracle..etc. Now I am using Oracle to give brief explanation about the creation deletion updating of the database table. Oracle provides Enterprise, mobile Express editions. Express edition is light weight …

Read More »