5
Write an Algorithm to find the maximum and minimum items in a
set of ‘n’ element.
No Answer is Posted For this Question
Be the First to Post Answer
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
character array A[12] can hold
How can I find the day of the week given the date?
Why isn't any of this standardized in c? Any real program has to do some of these things.
simple program for virtual function?
Which function in C can be used to append a string to another string?
please give me some tips for the placement in the TCS.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }