part1:for cancillation of simillar alphabets
#include
#include
#include
int main()
{
int i,j,l,d,count=0;
char a[20],b[20];
clrscr();
printf("enter 2 strings \n");
gets(a);
gets(b);
l=strlen(a);
d=strlen(b);
for(i=0;i { for(j=0;j { if(a[i]==b[j]) { a[i]='\0'; b[j]='\0'; } } } for(i=0;i { if(a[i]!='\0') { count++; printf("%c \t",a[i]); } } printf("\n"); for(j=0;j { if(b[j]!='\0') { count++; printf("%c",b[j]); } } printf("\n count=%d",count); getch(); } part2:for deciding whts the relation is? #include main() { int i,j,k=0,m,count,length; char a[]="flames",b[7],c; clrscr(); printf("enter remaining no. of characters\n"); scanf("%d",&count); length=strlen(a); while(length>1) { for(i=0;a[i]!='\0';i++) { k++; /* printf("k=%d",k); */ if(k==count) { for(m=i+1,j=0;a[m]!='\0';m++,j++) b[j]=a[m]; for(m=0;m b[j]=a[m]; b[j]='\0'; for(m=0;b[m]!='\0';m++) a[m]=b[m]; a[m]='\0'; }/*if*/ if(k==count) {k=0; break; } }/*for*/ length=strlen(a); }/*while*/ /*printf("%s\n",a); */ c=a[0]; switch(c) { case 'f': printf("friends\n"); break; case 'l': printf("lovers\n"); break; case 'a': printf("ansisters\n"); break; case 'm': printf("marriage\n"); break; case 'e': printf("enimies\n"); break; case 's': printf("sisters\n"); break; }/*switch*/ getch();\ } Another model:- #include #include #include void main() { int i,j,str1,str2,count=0,k; char m_name[20],f_name[20],fla[]={"flames"},res; clrscr(); printf("\n enter male name:\n"); gets(m_name); printf("\n enter female name:\n"); gets(f_name); str1=strlen(m_name); str2=strlen(f_name); for(i=0;i { for(j=0;j { if(m_name[i]==f_name[j]) { m_name[i]='\0'; f_name[j]='\0'; } } } printf("\n REMAINING LATTERS:\n"); for(i=0;i { if(m_name[i]!='\0') { count++; printf("%c \t",m_name[i]); } } printf("\n"); for(j=0;j { if(f_name[j]!='\0') { count++; printf("%c \t",f_name[j]); } } printf("\n count=%d\n",count); k=-1; for(i=0;i<5;i++) { for(j=1;j<=count;j++) { k++; if(k>=6) { k=0; } if(fla[k]=='\0') { do { k++; if(k>=6) { k=0; } }while(fla[k]=='\0'); } } fla[k]='\0'; } for(i=0;i<6;i++) { if(fla[i]!='\0') { res=fla[i]; } } switch(res) { case 'f': printf("friends\n"); break; case 'l': printf("lovers\n"); break; case 'a': printf("ansisters\n"); break; case 'm': printf("marriage\n"); break; case 'e': printf("enimies\n"); break; case 's': printf("sisters\n"); break; } getch(); }
i want a coding of a program of a calculator using graphics in c language??
Write and run a client and a server program in C-language using UDP
Program design involves outlining the structure and components of a software application before actual coding begins, ensuring that the program meets user requirements and functions efficiently. Pseudocode is a high-level description of the program's logic, using plain language and structured formatting to represent algorithms without adhering to the syntax of specific programming languages. This approach helps programmers conceptualize the solution and identify potential issues early in the development process. Ultimately, both program design and pseudocode serve as crucial tools for organizing thoughts and streamlining the coding phase.
Language transfer coding that converts information into a readable format typically involves encoding data using specific linguistic rules, such as syntax and semantics. This process often utilizes algorithms that can translate structured data into natural language, making it accessible and understandable for humans. Techniques like natural language processing (NLP) and machine learning are commonly employed to enhance the accuracy and fluency of the generated text. Such coding is crucial in applications like chatbots, automated reporting, and language translation services.
A C program is a computer program written using the C programming language.
binary coding system
Programming [verb] is a process done by software engineers or computer programmers consisting of the following steps: customer requirements analysis, software design, coding the design using a programming language, testing and debugging the program parts, program integration, testing and debugging the complete program, and customer acceptance testing. Any bugs found during the two testing steps of the programming process will have to be fixed in the code written in the programming language and all necessary testing steps repeated.A programming language [noun] (you wrote program language) is a human readable language used by software engineers or computer programmers during the coding step of the programming process. The code written in the programming language is then converted by a translator program (e.g. compiler, assembler) to machine code that the target computer can "understand" and run.
i want a coding of a program of a calculator using graphics in c language??
Write and run a client and a server program in C-language using UDP
Paul Kimmel has written: 'Advanced C# programming' -- subject(s): C# (Computer program language), OverDrive, Computer Technology, Nonfiction 'Using Borland C++5' -- subject(s): Borland C++, C++ (Computer program language) 'Visual Basic(R) .NET Power Coding'
language migrator makes a program compatible to all the operating systems. For example a program written in windows can run in linux using language migrator.
write program to concatenating two sting in 8086 assembly language
Program below?!
write an assembly language program to find sum of N numbers
Program design involves outlining the structure and components of a software application before actual coding begins, ensuring that the program meets user requirements and functions efficiently. Pseudocode is a high-level description of the program's logic, using plain language and structured formatting to represent algorithms without adhering to the syntax of specific programming languages. This approach helps programmers conceptualize the solution and identify potential issues early in the development process. Ultimately, both program design and pseudocode serve as crucial tools for organizing thoughts and streamlining the coding phase.
A program which is used to count the number of numbers in an array using a 8085 microprocessor is known as a assembly language program.
Joe Weber has written: 'Using Java 1.2' -- subject(s): Java (Computer program language) 'Using Java 1.1' -- subject(s): Java (Computer program language)