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
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
How many keywords are there in c?
Write a program to swap two numbers without using third variable in c?
How can you determine the maximum value that a numeric variable can hold?
Why are all header files not declared in every c program?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is the use of ?: Operator?
What is a string?
What is realloc in c?
How will you find a duplicate number in a array without negating the nos ?
What is the difference between Printf(..) and sprint(...) ?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is a struct c#?
What is meant by 'bit masking'?
What are types of structure?