#include<stdio.h>
void main();
{
clrscr();
char a,b,c;
printf("The quick brown fox jumped over the lazy dog");
getch();
}
jonsca commented: What is this?? -1

Recommended Answers

All 2 Replies

When you pass parameters to a function and you want to modify those parameters within that function, you'll need to pass the parameter by reference or by using a pointer. Otherwise the value will not be changed in the calling routine.

sir?..how about in converting the Fahrenheit into Celsius?...

Please post what you have done so far. If you are missing the formulas a quick google should bring those up.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.