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
Is it better to use a macro or a function?
Compare array data type to pointer data type
How does pointer work in c?
What is nested structure?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is the use of a static variable in c?
List some of the static data structures in C?
What are the usage of pointer in c?
What are # preprocessor operator in c?
What is the difference between scanf and fscanf?
Distinguish between actual and formal arguments.
What is array in C
What is meant by inheritance?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is the difference between pure virtual function and virtual function?