Skip to main content

Posts

Showing posts from June, 2019

ASCII TABLE || HEXADECIMAL TABLE

ASCII & Hexadecimal Table (CLICK THE IMAGE TO VIEW IT PROPERLY) REGARDS, ITK

Calculator Using C Programming

  C  is not only capable in maximizing the logical concept towards machine/software programming but it also makes users comfortable through its in-built functions. Making of simple calculator in C must at least be done by the novices themselves to improve and test their level of understandings in logics being applied. Here is the code that has been created for the joy of creativity through C-coding. CODE #include <stdio.h> #include <conio.h> int main() {     int a,b,result;     char ch[2]; clrscr(); gotoxy(30,1);printf("CALCULATOR"); gotoxy(10,8);printf("FIRST NUMBER : "); gotoxy(4,9);printf("OPERATION(+,-,*,/) : "); //to choose operation from gotoxy(9,10);printf("SECOND NUMBER : "); gotoxy(16,12);printf("RESULT : "); gotoxy(30,18);printf("Powered By : ITK"); gotoxy(25,8);scanf("%d",&a); // input first number gotoxy(25,9);scanf("%s",ch); //input operation as a

IT GRADUATE JOBS

GOVT. JOBS FOR IT GRADUATES(LIST-1) Here is the list of govt. jobs for IT graduates. Some of them includes PG eligibility too(SBI Senior IT post,WRDA Sotware Engineer ). The pay scale is as per the respective organization criteria. The last date given in the list is the date of form submission similar to each year. Govt Organization Name of Post - Total Vacancies Last Date for Apply Salary Min. Max, State Bank of India (SBI) Junior Associates - 8732 03/05/2019                   11,765                  31,450 Railway Recruitment Boards (RRB) Computer , IT Posts - 1000+ April 2019 35,400 1,12,400(level-6) State Bank of India (SBI) Probationary Officers - 100+ 22/04/2019            27,620            42,020 IDBI Bank Assistant Managers - 500 15/04/2019 16,757 72,670 Allahabad Bank Managers (IT) - 08 29/04/2019        

BASIC C FUNCTIONS || USING BASIC FUNCTIONS IN C || FUNCTIONS OF C-PROGRAMMING LANGUAGE

BASIC FUNCTIONS USED IN C-PROGRAMMING ​========================================= (​TO WATCH IN VIDEO, CLICK HERE  .) ​C-language is basically procedural programming language which highly depends on its functions and its use. Inspite of being case sensitive, C provides us the use of its pre-defined functions according to user choices. ​ ​These functions are pre-defined under their respective header files. ​ ​Before those functions, you should know about the scan formats that are used to input/output to/through a specific datatype. ​ ​SCAN FORMAT           USED FOR ​  %d                            Integer type (signed) ​%u                             Integer type(unsigned) ​%ld                            Long Integer type ​%c                              Char type(character by character) ​%s                              Char type(whole string at a time) ​%f                               Float type ​%lf                              Double type ​%Lf                   

5 FEMALE PROGRAMMERS || TOP 5 FEMALE COMPUTER PROGRAMMERS || FEMALE PROGRAMMERS WHO AFFECTED THE COMPUTER GENERATIONS

5 PROGRAMMIG LANGUAGES CREATED BY WOMEN ​========================================= ​ ​We have seen male domination in Software Industry in the world. Either it was about creation of C (Dennis Ritchie) or C++ (Bjarne Stroustrup) or Java ( James Gosling) or Python (Guido Van Rossum),etc. But we must not forget the female contribution in programming languages as Lady Ada Lovelace ( an English Mathematics genius and fellow of Charles Babbage )was the world's first computer programmer who led the path for humans to communicate with a machine. ​ ​While women are making a significant impact, their contribution have not been covered extensively in the media irrespective of  the reasons. ​ One area where women have made important and lasting contribution is development of programming languages. ​ ​Let's eyewitness the female contributions for the Programming Languages:- ​ ​1. ARC Assembly by Kathleen Booth (1950) ​ ​The machine code language was created in the early day

ESCAPE CHARACTERS OF C || NON-PRINTABLE CHARACTERS IN C

ESCAPE CHARACTERS IN C-LANGUAGE ​================================ ​( TO WATCH ON YOUTUBE, CLICK HERE .) ​These are non-printable output commands that perform specific task. ​ ​\t --> Tab (8 horizontal space at a time) ​\n --> New line character ​\r --> Carriage Return ​\a --> Alarm or beep ​\b --> Backspace ​\v --> Vertical tab ​\0 --> Null ​ ​EXAMPLE:- ​ ​#include <stdio.h> ​#include <conio.h> ​ ​void main() ​{  ​    clrscr(); //clears screen ​    printf("THIS\nIS\tTHE\rESCAPE\tSEQUENCE\nEXAMPLE \b"); ​getch(); ​ } ​ ​ ​OUTPUT:- ​ ​ ​Without \b, the cursor positions after the letter 'E'. ​ ​ ​                                                  Regards, ​                                                  ITK ​
                    Basic C Program                =========== ​ ​C is a high-level language (language which is understandable to humans to communicate with machine) which lies between assembly language and high-level language. ​ ​It is mainly a procedural programming language that makes user (or programmer) to program using the specified functions buit-in its predefined library. It also provides the feature to create user-defined functions (functiins created by user/programmer with his/her own choice). ​ ​Lets have a look at the basic C-program. ​ ​#include <stdio.h> //pre-processor directory ​ ​int main( ) //defining main() function ​{ ​    printf("IT IS FIRST C-PROGRAM AT ITKNOWLEDGE"); ​return 0; ​} ​ ​OUTPUT :- ​ And the program will look in Turbo C++ like :- ​ ​Every C-program starts its execution with the function main() and the compilation process starts with the preprocessor directives (i.e. #include ...). We shall use here Borlan

Combination of two strings using array || combination of strings without repetition || combination of strings

        COMBINATION OF TWO STRINGS USING ARRAY /* ​ * C Program to Display Every Possible Combination of Two Words  ​ * from the given 2 String without Displaying Repeated Combinations ​ */ ​#include <stdio.h> ​#include <string.h> ​ ​void main() ​{ ​    char str1[50],  str2[50], str3[100][100], str4[100][100]; ​    char str5[200][200], temp[200], str[200][200]; ​    int i, j = 0, k = 0, l = 0, m = 0, index = 0, n = 0; ​    printf("Enter first string\n"); ​    scanf("%[^\n]s", str1); ​    printf("Enter second string\n"); ​    scanf(" %[^\n]s", str2);  ​ ​/* code to convert string in 2-D array */ ​    for (i = 0;str1[i] != '\0';i++) ​    { ​        if (str1[i] =  = ' ') ​        { ​            str3[j][k] = '\0'; ​            j++; ​            k = 0; ​        } ​        else ​        { ​            str3[j][k] = str1[i]; ​            k++; ​        } ​        str3[j][k] = &#