Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
120 views
18 pages
Gujarati DS Unit-2 - 06092019073642AM
Uploaded by
local id
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download
Save
Save Gujarati DS Unit-2_06092019073642AM For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
120 views
18 pages
Gujarati DS Unit-2 - 06092019073642AM
Uploaded by
local id
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save Gujarati DS Unit-2_06092019073642AM For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save Gujarati DS Unit-2_06092019073642AM For Later
You are on page 1
/ 18
Search
Fullscreen
D Darshan Unit 2 - Strings mio eh fo pa Se alot wa AA Sell AA eEstiad (String and their representation) 2dlot yf 8? (What is string?) «lr B Bes2z oD RB. © POLA sere sAVatet ("") Hi rcturtl WA _B. Getszet_ td, “Hi Hello” © €25 alot NULL sez alal eHlAe aua BF aglar yA ata a eva B. © NULL 32522 A “Vor aiat Estlcuni WA B. © NULL 32522 A alo ot wa WAARs GAeaini wa B, adlot A BRs22 Al Az (Character set of string) 1) UlcsLAz (Alphabets): © Lower case: atoz co Upper case: AtoZ 2) o4ARs (Numeric): 0 tos 3) WMuct 32522 (Special character):+,-,",/,(),{hl],"",Null ADR. alot Uz Act WURetet (Common operation performed on string) + alot ls WA awe (string Read/Write) © Zor Ml Ack 162 (Find length of string) © Plot NoBseretet (Concatenation of string) « eMlo_ AUL (Copying one string to another) © alot sxRo5e1 (Comparing string for equality) fe Uct-aglol Razselet (Extracting some portion of a string (Sub-string)) « 222 AsMAld1 (Text editing) Deol AAo1 (Pattern matching) aglat dls ua ais2 (Reading and Writing Strings) o Para Al yror eataarai wa B: char namef15]; 1 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se fo wali name D eWlor BS Bui aed ai qe? 14 Bsee B war NuLL(\0’) Besez A zlze SAL HIS As byte ofl wee Ud B. © MUA selMaaisss AA you szaunti wa B: char name[4] = “xyz”; © Mr A MA yr MsAz seaaui WA B: char name[4] = {'x',’y/,’2'}; «© Guz wide BsQRatot Hi ateosell 32 Usell call wel A Als of WUALAL WA AL SUISAe MAARs atssl 82 B. Astor alo. (Reading a string): Pow As srat ue A ssalot lA yor B: scanfl) AA gets(). © scanf() el Guallol As ¥ AF A als seal HLS aUlel B wel? gets() ol Guar ela a As src 2 MAB Fy wa sor A ua ds sf dB, scanf(“%s”, name); = WU YH MAS niall setye MA ywo wid d: Hi hello © A g5et aglat “Hi” al ACA ui ele ata B. © AR AS “hello” A buffer Hi a2 ale B UA aetl Ulett scanf() Hi A als ata B. © gets() S52let ol Guallar AS ua sAlet alr aaiz seal WA B. gets(name); awdlo1 aglol (Writing a string): «Wl write Stel HL2 printf) L Gur %s Mile Welgiaz WA lA yor szani wea B: printf(“%s",name); © Guz wel print) VeAee alr AMM yi eet a¥lo1 MA 52d. adlot wurst (String Operations) 1) alot Ace, wlURelet (String Length Operation): © Pou ui 23e4 Besez ofl aiveu a alot ofl length 3 B. z | DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se GEtszet: a¥l0l “Computer” ofl length 8 B. Algorithm: LEN (STR) Step 1: [Initialization] 1<-0 Step 2: [Read string] Read (STR) Step 3: repeat While (STR{I}<>NULL) Kk He Step 4: [Display length] Write (‘Length of string: I’) Step 5: [Finished] Exit. Program: Program of finding string length. Hinclude
#include
int LEN(char []); void main() { char str[30}; int m; printf(“\nenter string:"); gets(str); m= LEN(str); printf("“length of string=%d”, m); } int LEN(char *s) { int i=0; while (*s !="\0") { int; SH; } return (i); 2) aglar Au wluretet (String Copy Oper: © WS, A alo s1 WA s2 Aer wma aPlor s2A si Hi AU seeut lz copy Ssalet of 832 U3 B. nn): 3 | DEP: CE Ds (3330704) Prof. Vishal K. MakwanaDMD arshan Unit 2 - Strings mio eh fo pa Se lank or NULL string, 52 = “Computer” XSTRCOPY(s1, s2) 2 ala1 s2as1 Hi ALL 5? B. Algorithm: XSTRCOPY (STR 1, STR 2) Step 1: {Initialization} STR1<- NULL i<-0 Step 2: [Read the string STR2] Read (STR 2) Step 3: [copy operation performed] repeat While (i<> LEN (STR 2)) (a) STR4 [i] <-STR2 [i] (b) ic- ie Step 4: [Print the string after copy operation performed] write ('STR2’) Step 5: [Finished] Exit. Program: Program of copy operation Hincludecstdio.h> include
void xstrepy(char{}, char{}); void main() { char str1[30], str2[30}; printf(“\n enter source string:"); gets(str1); str2="\0'; xstrepy( str, str2); printf(“\n After copying str1 into str2_ the str2 is: \n"); puts(str2); } void xstrepy (char *S1, char *52) { while ( *S1!="\0") { *52=*51; sit; S244; } *52=\0' } DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se 3) alot ABIAalot uretet (Concatenation Operation): © Blot AcBeeratet Hi A azlor st War s2 Az, s1 UA 52 ciel A sould SA As a_lor Hsladani Wa B. Aol HIE ABeAalet satel VS XSTRCAT(s1, 52) ¥32 US B. Example: if si = “hi” $2 “hello” 1 Wal 52 HA s104ltSot Sell OLE= “hihello”. Algorithm: XSTRCAT(STR1, STR2, STR3) Step 1: [Initialization] STR3 <-NULL Step 2: [Copy STR1 string in to STR3] repeat while(ic> LEN (STR1)) (a) STR3 [k] <- STR1 [i] (b) ic- i+ (c) k- kt, Step 3: [Append STR2 string into STR3] repeat while (j <> LEN(STR2)) (a) STR3 [k] <- STR2 [j] (b) je je. (c) k<- kt, Step 4: [Print the string after concatenation Operation performed] write (“STR3”) Step 5: [Finished] Exit. Program: Program of concatenation of operation. Hincludexstdio.h> #include
void xstrcat( char[], char[], char[]); void main () { char str1[30], str2[30], str3[40]; printf("\n enter first string”); gets(str); printi(”\n enter second string”); 5 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se str3= \0"; xstreat( str, str2, str3 }; printf(”\n After concatenating two string str1 and str2 the str3 is:\n”); puts(str3); t void xstreat ( char *S1, char *S2, char *S3 ) { while (*51 !="\0’) { *53=*51; Sits; S344; } while( *S2 !="\0’) { *S3= *52; SH; S344; } *53="\0'; } 4) Aor-eflot vlurelet (Substring Operation): 2 wer alot Hiell AS eflor weal Bsez A Wezse seat HL substring s52tet ofl 832 U3 B. © Substring Aayse S2cll MLZ Bs522 Wofletet wa Seal '2se2 alo niall Nayse s2at Aefl avant wal AB, GELS2LL: String are s1 = “Computer”, cursor = sub string Wezsz S2eut ULF ofl UdMlatet cata B. num = sub string Hi Bactl Bsez Wazse seeit doll event esta B. sub string $52lot A XSUBSTR(s1, cursor, num) 1213 Cucani WAG B. ual 3, cursor = 4 Bal num =3. XSUBSTR(si, 4, 3) | DEP: CE Ds (3330704) Prof. Vishal K. MakwanaDMD mio eh fo pa Se arshan Unit 2 - Strings Algorithm: XSUBSTR (STR, cursor, num) Step 1: [initialization] i<-0 subject<-NULL Step 2: [copy the string STR to subject string) subject<- STR Step 3: repeat while (num <> 0) {i)STR [i] <- STR [cursor] (ii) cursore- cursor +1 (ii) ic 4 (iv) nume- num-a Step 4: [Print original string and sub string] {ijwrite (“subject”) [original string] (iijwrite ("STR”) [sub string] Step 5: [Finished] Exit Program : Program of substring operation. finclude
Hinclude
void xsubstr( char{], in void main () { char str(30}; int cursor, num; gets(str); printf(“enter value of cursor and number scanf(“%sd%d”, &cursor, &num); xsubstr (str,cursor,num); } void xsubstr (char $1], int CP, int num) { char $2[10]; int i= 0; cP =CP-1; while (num !=0) { nt); fi] = S1CPI; cps; ist; num -; DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se Safi] ="\0'; printf("\n sub string:%s”, $2); } 5) adlot 82 Sloset (String Comparison): oe Plo srdMosot wuratetai, A aloe s1 WA s2 we Alar B. s1 WA s2 ni Bsez BLA SWdloset s2atni WA B. « Boia elor Uavll Ae A “Both string are equal” WA WAL AA A “Both string are not equal” WA 2a. Gelgeet: If si = “Hello” 52 = “Hello” then XSTRCMP(s1, 2) = true. If s1= "Hi" 52.= “Hello” then XSTRCMP(s1, 2) = false. Algorithm: XSTRCMP( STR1, STR2) Step 1: [Initialization ] iO Flag <0 Step 2: [ Read two string] Read (STR1) Read (STR2) Step 3: [ Finding the length of two string] i2 = LEN (STR1) i2 = LEN (STR2) Step 4: [Check the length of both string] iffit<>i2) then Write("Both string are different”) Exit Step 5: [ Compare two string character by character] Repeat while (i<= i1) if{STRI [i]<> STR2[i]) then Write (“Both string are different”) Exit else 8 DEP: CE Ds (3330704) Prof. Vishal K. Makwanaarsnan Unit 2 - Strings © Darshan Step 6: if( Flag =1) then Write(" Both string are same”) Step 7: [FINISHED] Exit Program : program of string comparison operation. Hinclude
include
int xstremp(charl], char{]); void main() t } cchar str1 [30], str2 [30]; int m; printf("\n enter first string:"); gets(stri); printf("\n enter second string:”); gets(str2); m= xstremp(str1, str2); if(m==0) printf(“both string are different”); ) printf(“both string are same”); else if{m: int xstremp| char *S1, char *S2) { int 11, 12, fla it = strlen(S1); i2 = strlen(S2); if( ia != 2) { return(0); } while(i< it) { if( #51 = *S2) { return(0); } else { t 9 DEP: CE Ds (3330708) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se return(1); 6) alot Soudet (String (text) Insertion): eo lor Hi AeFuEl MoMlelot U2 substring SoxE S2cl HL insert SsAalot ofl %32 Ud B. INSERTION(string, position, sub string) Getszet: Ula 3, string = “My name XYZ” Mel sub string “is” A Wofletet 8 Ale Hous Seal HL2, INSERTION (string, 8, “is”) Output: My name is xyz. Algorithm: Insertion (text, posi Step 1 : [Initialization] i<-0 i
position) (i) temp[i] < text[i] (ii)ic va Step 3 : [To store a position in m] meind Step 4: [Insert a string at position} repeat While(j <> LEN(string)) {a) templi]<-stringli) (b) ic- ita (dici#t Step 5 : (To find rest of character after string insertion] | SLEN(text) - position Step 6 : [Insert rest of character after Inserting String] repeat While (I <> 0) {i) temp[i]<-text[m] (ii)ic 142, (ii) me- m+. (vie ba Step 7 : [finished] Exit. 10 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaDarshan Unit 2 - Strings mio eh fo pa Se Program : program to perform string insertion operation. Hinclude
Hinclude
#include
Hinclude
void str_insertion (char *, int, char *, char *); void main() { char *new_str; char text[50]="GOVERNMENT POLYTECHNIC GIRLS”; char str[4]="FOR"; int position=24; new_str=(char*)malloc(50);_ /*Declare for store a text after insertion*/ printf("Original string : %s”, text); printf(“text to be insert is:%s”, str); printf("text to be insert at position:%d”, position); str_insertion (text, position, str, new_str); // call function str_insertion() printf(\n Display new string after insertion:”); puts(new_str); } void str_insertion(char *text, int pos, char *str, char *temp) { while(pos != 0) /finsert text up to position in temp. { *tempts = texte+; pos } while(*str !="\0')__//insert str string into temp. { *tempt+ = *str+s; } “tempt =" // insert one blank space after inserting a string str while(*text!="\0") { “tempts = *textt+; /finsert rest of character of text into temp } “temp: /fterminating the temp string } Output: Original string : GOVERNMENT POLYTECHNIC GIRLS Text to be insert is : FOR Text to be insert at position : 23 Displav new string after insertion : GOVERNMENT POLYTECHNIC FOR GIRLS DEP: CE Ds (3330704) Prof. Vishal K. MakwanaDMD arshan Unit 2 - Strings mio eh fo pa Se 7) alot B@atet (String (text) Deletion): ASuel elot ial substring Selle s2at We Wofletet AeA } aglor yi sei zeta afl ua Bec Bs22 sclle seat A eatlaani WA B. Aetl HIE deletion $52let DELETE(string, position, length) ofl ¥32 U3 . Gelszel: al 3, string position = 13 (Starting position of word) length=3 (Number of characters to delete) DELETE(string, position, length) Output: Computer scienandengg “Computer science and engg.” Algorithm : Deletion (text, position, length) Step 1: [Initialization] 0 j
position} {i) temp [k]
0) {ijtemp[ k] <- text{i] i)k<-k+ 1 (ii) je-j-4 (wy) Step 6: [finished] Exit Program : Program to perform string deletion operation. Hinclude
Hinclude
Hinclude
void d_substring(char *,int, int, char *}; 12 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se void main() { char s1[100],a[100}; int pos,n; printf("Enter your strings: "); gets(s1); printf("Enter your position::"}; scanf("%d", &pos); printf("Enter no. of character to dele! scanf("s4d", &n); d_substring(s1,pos,n,a); puts(a); _substring(char *p, int k, int d, char *b) while(k != 0) { b="; bet; pH; ke while(d!=0) pe, dj while(*p != '\0') *b='\0; printf("After deleting\n"); 8) alot wes (String Appending): © WUA elola via AS aloe FeUE s2atell WAX a eglol append Weeate 58 B. © Gelsze dals, text = wa elo 13 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaDMD arshan Unit 2 - Strings mio eh fo pa Se string = ctcll eglot 8 & wet aloe va Gens srani wa d, APPEND (text, string) Algorithm: APPEND (text, string) Step 1: [Initialization] ic 0 ico Step 2: [to reach at end of text] Repeat While ( i<> LEN(string)) iit Step 3: [appending a string] Repeat While( j <> LEN(string)) {i) text(i ) <- stringli) (ii)ic-i + (ill) je J+ Step 4: [Print the string after appending] Write (“text”) Step 5: [finished] Exit. Program : program for Appending a string operation. #include
fincludecstring.h> void Append(char (}, char (}); void main() { char str1{15},str2{15); printf("\n enter the Original string :"); gets(stri); printf(“\n enter the string : which is Append”); gets(str2); Append{(str1,str2); printf(“print the string after appending”); puts(str); } void Append(char *s1, char *s2) { while(*s1 != '\0') { 14 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se sit; } while(*s2 |= "\0") { 51 = "52; sit; sat; } *52= 0"; 9) ala daa (Reversing a Strit o lar aad wWuretoi wide ewlot ott Beat Bs5e2 A UGA NBA searni wa B. + Gelezel, string1 = WUA e*?lO1 string2 = Raal aglai A al2 52 B. REVERSE (stringl, string2) Algorithm: REVERSE(string!,string2) Step 1:[initialization} 0 j<0 Step 2:[to reach at end of original string] Repeat While(i<>LEN(string 1)) ica Step 3: [store reverse string from original string] Repeat While(i>=0) string2{j}<-string1{i] ici iid Step 4: [print the reverse] Write(“string2”) Step 5: [finished] Exit. 15 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se Program: program for reversing a string operation. Hinclude
finclude
void reverse(char{],char(]); void main() { char str1(15],str2(15]; printf(“enter original string”); gets(str); str2="\0" reverse (str1,str2); printf("printf reverse string”); puts(str2); } void reverse(char *s1,char *s2) { int i; isstrlen(s1); isi; while(*s1 I= ‘\0") { sit; } while( i>=0) { “s2="81; - } ¥522\0; } 10) aglol soci& WU WA Awaz 3a (Converting character of string into upper case and lower case): eo we alot A upper case Hiell lower case Hi SoctE SRL MLS WIDE alot ott E2522 Hi 32 GAaLML WA B Wa lower case Hiel upper case Hi SoclE SAL M2 WDE alot ott BRse2z Hiell 320 szaini wa B. + Geleze,, string1: Original string string2: to store upper case string 16 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se UPPER (string1, string2) LOWER (string1, string2) Algorithm: UPPER_CASE(string1,string2) Step 1: [initialization] -0 Step 2: [to convert lower to upper case] Repaet While(i<>LEN(string1)) if(string1[iJ>="a’ ANDstring1 i} string2[i]=string1[i]-32 ici Step 3: [print the upper case string] Write(“string2”) Step 4: [finished] Exit Program: Program for converting lower case string to upper case string operation. Hinclude
#include
void Upper_case(char{},char{}); void main() { char str1[15],str2(15]; printi(“\n enter original string”); gets(str1); str2="\0'; Upper_case(str1,ste2); printf("print upper case string”); puts(str2); } void Upper_case(char *s1,char *s2) { while(*s1!="\0’) { “s2=*51-32; sltt; s2tt; } “s2=" F 7 DEP: CE Ds (3330704) Prof. Vishal K. MakwanaD Darshan Unit 2 - Strings mio eh fo pa Se Algorithm: LOWER_CASE(string 1,string 2) Step 1: [initialization] ic Step 2: [to convert upper to lower case] Repeat While(i<>LEN(string1) if(string1[i]>="A’ AND string! [i]<= string2{ij=stringt[i]+32 ic 44 Step 3: [printf the lower case string] Write(“string2”) Step 5: [finished] Exit. 7) then Program: program for converting upper case string to lower case string operation. finclude
include
void Lower_case(char{],char{]); void main() { char str1{15),str2[15]; printf(“\n enter original string”); gets(str1); str2="\0'; Lower_case(stri,str2); printf(“printf lower case string”); puts(str2); } void Lower_case(char *s1,char *s2) { while(*s1!="\0") t *52="51432; sit; s2+4; } *82=\07; 18 DEP: CE Ds (3330704) Prof. Vishal K. Makwana
You might also like
COSC2429 - Intro To Programming Assessment 2 - Sem A 2021: RMIT Classification: Trusted
PDF
100% (1)
COSC2429 - Intro To Programming Assessment 2 - Sem A 2021: RMIT Classification: Trusted
3 pages
Strings
PDF
No ratings yet
Strings
8 pages
DS GTU Study Material E-Notes Unit-3 06072020090640AM
PDF
No ratings yet
DS GTU Study Material E-Notes Unit-3 06072020090640AM
28 pages
DS GTU Study Material E-Notes Unit-4 06092019073913AM
PDF
No ratings yet
DS GTU Study Material E-Notes Unit-4 06092019073913AM
32 pages
Unit 1
PDF
No ratings yet
Unit 1
9 pages
Unit 3
PDF
No ratings yet
Unit 3
4 pages
Final CE141 CCP Practical List
PDF
No ratings yet
Final CE141 CCP Practical List
11 pages
CH03 Loaders and Linkers
PDF
100% (5)
CH03 Loaders and Linkers
20 pages
Asymptotic Notations
PDF
No ratings yet
Asymptotic Notations
4 pages
Strings of 8086
PDF
No ratings yet
Strings of 8086
5 pages
Elective 1 Journey Into Fundamentals and C Programming Concepts
PDF
No ratings yet
Elective 1 Journey Into Fundamentals and C Programming Concepts
3 pages
DATA STRUCTURE Lab Manual For 3rd Sem
PDF
No ratings yet
DATA STRUCTURE Lab Manual For 3rd Sem
60 pages
Stack, Queue, Linked List
PDF
No ratings yet
Stack, Queue, Linked List
33 pages
8085
PDF
No ratings yet
8085
15 pages
Balaguruswamy
PDF
50% (2)
Balaguruswamy
34 pages
Java Practical File IPU
PDF
100% (1)
Java Practical File IPU
39 pages
Microprocessor and Assembly Language CSC-321: Sheeza Zaheer
PDF
No ratings yet
Microprocessor and Assembly Language CSC-321: Sheeza Zaheer
30 pages
DS Lab Manual
PDF
No ratings yet
DS Lab Manual
76 pages
PST Programs
PDF
No ratings yet
PST Programs
14 pages
Practical File 1 To 41 PDF
PDF
100% (1)
Practical File 1 To 41 PDF
91 pages
ECE 521: Microprocessor System: CHAPTER 3: Microprocessor Programming in C
PDF
No ratings yet
ECE 521: Microprocessor System: CHAPTER 3: Microprocessor Programming in C
42 pages
Array Implementation of List
PDF
No ratings yet
Array Implementation of List
22 pages
File Allocation Methods
PDF
No ratings yet
File Allocation Methods
9 pages
Addition of Two Polynomials Using Linked List
PDF
No ratings yet
Addition of Two Polynomials Using Linked List
15 pages
Practical File DBMS
PDF
No ratings yet
Practical File DBMS
14 pages
Unit 2 8086 Assembly Language Programming
PDF
No ratings yet
Unit 2 8086 Assembly Language Programming
161 pages
Java Practical File
PDF
100% (1)
Java Practical File
33 pages
Module 1: Basic Structure of Computers 1.1 Basic Operational Concepts
PDF
No ratings yet
Module 1: Basic Structure of Computers 1.1 Basic Operational Concepts
34 pages
System Software Lab
PDF
100% (2)
System Software Lab
49 pages
Advanced C Syllabus
PDF
100% (2)
Advanced C Syllabus
1 page
Microprocessor 8085 Lab Manual PDF
PDF
33% (3)
Microprocessor 8085 Lab Manual PDF
29 pages
C++ Lab Manual
PDF
No ratings yet
C++ Lab Manual
26 pages
250 - C Programs For Practice PDF
PDF
No ratings yet
250 - C Programs For Practice PDF
13 pages
Dsa BCS304
PDF
No ratings yet
Dsa BCS304
29 pages
Lab Manual - RA3CO35 - Embedded Systems
PDF
No ratings yet
Lab Manual - RA3CO35 - Embedded Systems
24 pages
CS8261 C Programming Lab Manual With All 18 Programs
PDF
100% (1)
CS8261 C Programming Lab Manual With All 18 Programs
42 pages
12 Computer Science Notes CH03 Data File Handling
PDF
No ratings yet
12 Computer Science Notes CH03 Data File Handling
10 pages
Lecture 1.7 - Array Traversing Insert Delete Presentation
PDF
No ratings yet
Lecture 1.7 - Array Traversing Insert Delete Presentation
38 pages
GE3151 PYTHON Syllabus
PDF
No ratings yet
GE3151 PYTHON Syllabus
2 pages
R23 Java Lab Manual
PDF
No ratings yet
R23 Java Lab Manual
34 pages
MP LAB Cse Manual
PDF
No ratings yet
MP LAB Cse Manual
140 pages
Module 4
PDF
No ratings yet
Module 4
35 pages
CS3353 - Notes 2 Marks and 16 Marks
PDF
No ratings yet
CS3353 - Notes 2 Marks and 16 Marks
287 pages
List of Programs Subject Code: PCS-307 Subject: OOP Using C++ Programming Lab
PDF
100% (1)
List of Programs Subject Code: PCS-307 Subject: OOP Using C++ Programming Lab
4 pages
Practical No. 7 - String Functions and Array: 1) Write A PHP Program To Demonstrate Different String Functions. Program
PDF
No ratings yet
Practical No. 7 - String Functions and Array: 1) Write A PHP Program To Demonstrate Different String Functions. Program
2 pages
AJP Lab Manual
PDF
No ratings yet
AJP Lab Manual
21 pages
Ddco With Answers
PDF
No ratings yet
Ddco With Answers
46 pages
Number Representation
PDF
No ratings yet
Number Representation
59 pages
Fundamentals of Programming: Lab Report # 13
PDF
No ratings yet
Fundamentals of Programming: Lab Report # 13
6 pages
DSA Lab Manual - RMDEC
PDF
100% (1)
DSA Lab Manual - RMDEC
58 pages
Arrays & Strings
PDF
No ratings yet
Arrays & Strings
76 pages
IA-32 Architecture: Computer Organization and Assembly Language Dr. Aiman El-Maleh
PDF
No ratings yet
IA-32 Architecture: Computer Organization and Assembly Language Dr. Aiman El-Maleh
38 pages
Ex. No: 1 8 Bit Addition Date: Aim
PDF
No ratings yet
Ex. No: 1 8 Bit Addition Date: Aim
44 pages
Programming in C++ - Lab Manual 2016-2017
PDF
33% (3)
Programming in C++ - Lab Manual 2016-2017
22 pages
UE18EC305: Using Keil IDE (Assembly Level Programs) Cycle 1: Computer Organization Laboratory (0-0-2-1-1)
PDF
100% (1)
UE18EC305: Using Keil IDE (Assembly Level Programs) Cycle 1: Computer Organization Laboratory (0-0-2-1-1)
7 pages
OOP - I GTU Study Material Presentations Unit-1 07022022102854PM
PDF
No ratings yet
OOP - I GTU Study Material Presentations Unit-1 07022022102854PM
59 pages
3 String
PDF
No ratings yet
3 String
44 pages
1
PDF
No ratings yet
1
2 pages
Unit-2 Strings
PDF
No ratings yet
Unit-2 Strings
32 pages
Strings: Divyashikha Sethia (DTU) Divyashikha@dtu - Ac.in
PDF
No ratings yet
Strings: Divyashikha Sethia (DTU) Divyashikha@dtu - Ac.in
31 pages