Is html an oop?
No Answer is Posted For this Question
Be the First to Post Answer
What are generic functions and generic classes?
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
how to find the largest of given numbers in an array
What is oops in programming?
i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<<k; } //please comment on the output
c++ is a pure object oriented programming or not?
What is the difference between XML Web Services using ASMX and .NET Remoting using SOAP?
what is the difference between <stdio.h>and "stdio.h"?
what is the difference between function template and template of function?explain with example.
namespace is working on which compiler?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort
what is overloading and overriding?