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
What is the ANSI C Standard?
What do the functions atoi(), itoa() and gcvt() do?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is the difference between mpi and openmp?
Explain the advantages and disadvantages of macros.
What is scanf_s in c?
Why void main is used in c?
In a byte, what is the maximum decimal number that you can accommodate?
What is use of #include in c?
Explain high-order and low-order bytes.
how we can make 3d venturing graphics on outer interface
How can type-insensitive macros be created?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Is stack a keyword in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?