answersLogoWhite

0

No the legnum str is a normally aspirated 2.5 litre 24 valve V6 putting out around 160 BHP. The turbo version of this car is the twin tubo Legnum VR4 that increases output to 280 BHP, no slug, probably the best value and most versatile second hand performance car on the market.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Motor oil for Mitsubishi legnum?

For the Legnum, 6A13TT, it's best to use Fully Synthetic Oils, preferably 5W30.


is it possible to upgrade the legnum ecu?

It does appear that one can upgrade the Legnum ECU although it is a complicated process. There are videos on YouTube to walk one through the process.


Galant vr4 How much bhp?

depends on the model, galant estate,or legnum in japan,twin turbo model,pre 1997 260 hp post 1997 280, however this limit is std only and can easily be improved on


To display string in a title case in c?

#include<stdio.h> #include<conio.h> #include<string.h> int main() { int tmp,i; char str[30]; printf("Enter any string: "); gets(str); for(i=0; str[i]!='\0'; i++) { if(str[i-1]==' ' i==0) { if(str[i]>='a' && str[i]<='z') str[i]=str[i]-32; else if(str[i]>='A' && str[i]<='Z') str[i]=str[i]+32; } printf("%c",str[i]); } getch(); return 0;}


Which car company produces the Legnum model?

The Legnum is a model produced and sold by Mitsubishi Motors. It is the equivalent of the Galant but is only sold in Japan and it's surrounding areas.


A c program which will remove all the spaces from a given string?

RemoveSpaces (char *str) { char *new = str; while (*str != '\0') { if (*str != ' ') *(new++) = *str; str++; } *new = '\0'; }


How do you write a C program to input a string of lowercase alphabets and convert it to uppercase using a loop?

void to_uppercase (char* str) { if (str == 0) return; while (*str != '\0') { if (*str>='a' && *str<='z') *str-=32; ++str; } }


write aprogramme to display vowels in c?

Here's a simple C program to display vowels from a given string: #include <stdio.h> int main() { char str[100]; printf("Enter a string: "); fgets(str, sizeof(str), stdin); printf("Vowels in the string: "); for (int i = 0; str[i] != '\0'; i++) { if (str[i] == 'a' || str[i] == 'e' || str[i] == 'i' || str[i] == 'o' || str[i] == 'u' || str[i] == 'A' || str[i] == 'E' || str[i] == 'I' || str[i] == 'O' || str[i] == 'U') { printf("%c ", str[i]); } } return 0; } This program prompts the user for a string, then iterates over each character to check if it's a vowel, and displays the vowels found.


Mitsubishi legnum heater air-con not working?

If the air conditioner in a Mitsubishi Legnum is not working, there could be a blown fuse. There could also be a loose cable, or a problem with the heater motor.


How do you toggle case of string in c code. Example is TogGle will turn into tOGgLE?

#include<stdio.h> int main() { char str[100]; int i; printf("Please enter a string: "); // gets(str); // fgets is a better option over gets to read multiword string . fgets(str, 100, stdin); // Following can be added for extra precaution for '\n' character // if(str[length(str)-1] == '\n') str[strlen(str)-1]=NULL; for(i=0;str[i]!=NULL;i++) { if(str[i]>='A'&&str[i]<='Z') str[i]+=32; else if(str[i]>='a'&&str[i]<='z') str[i]-=32; } printf("String in toggle case is: %s",str); return 0; }


Where is the cabin air filter on a 1999 Mitsubishi Legnum?

The cabin air filter on a 1999 Mitsubishi Legnum is located behind the glove box. The filter can be removed once the glove box is released and taken out.


What is the first word starting with str in the dictionary?

str