write a program to remove duplicate from an ordered char array? in c

Answer Posted / avizo

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,sum;
printf("enter the first value a:");
scanf("%d",&a);
printf("enter the second value b:");
scanf("%d",&b);
sum=a+b;
printf("sum=%d",sum);
getch();
}

Is This Answer Correct ?    0 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Does c have function or method?

596


Tell me about low level programming languages.

649


What are the types of pointers?

607


Why do we use & in c?

595


What are structural members?

576






What are the advantages of using linked list for tree construction?

647


What is #define used for in c?

618


What are 3 types of structures?

596


How can I get random integers in a certain range?

619


What is #define size in c?

653


What is build process in c?

648


Explain why c is faster than c++?

579


how to introdu5ce my self in serco

1526


What is new line escape sequence?

814


What is the correct code to have following output in c using nested for loop?

615