skip to main | skip to sidebar

Tuesday, September 6, 2011

Med Student's Differentials Dx

0 comments

Diagnostic error is common. The usual accepted rate is between 5% to 15% before the report July 2010 in PEDIATRICS that revealed 45% rate in 1362 pediatricians surveyed. There are many reasons leading to a wrong diagnosis. One is failure to ask one or two critical questions because of the natural limitation of our brain to 7 to 9 items at a time. Another reason is lack of time because ...

Wednesday, August 24, 2011

Requested Tutorial Basic input with if else Conditions

0 comments

A sociological study clasifies a family of three persons as POOR, MIDDLE CLASS and WEALTHY. provided that family income is less than 12,000.00 Php between 12,000.00 and 70,000.00 Php respectively. The Problem Create a program which acepts family income as input from the user and displays the proper classification of the family. FAMILY INCOME CLASSIFICATIONFAMILY INCOME below 12,000 - POOR ...

Tuesday, August 23, 2011

Simple Arithmetic Operation using Selective Structure Switch

0 comments

#include <stdio.h>#include <conio.h> void main() { clrscr(); int operand1, operand2; char oprtor; printf("Enter the first number: "); scanf("%d",&operand1); printf("\nEnter the second number: "); scanf("%d",&operand2); printf("\nEnter operation: "); scanf("%s",&oprtor); switch (oprtor) { case '+': //Addition printf("%d %c %d = %d",operand1, ...

Simple Arithmetic Operation using Conditional Structure if & else in C Language

0 comments

This source code perform simple arithmetic operation using Conditional structure (if & else) and Arithmetic operators ( +, -, *, /, % ). #include <stdio.h>#include <conio.h> void main() { clrscr(); int operand1, operand2; char oprtor; printf("Enter the first number: "); scanf("%d",&operand1); printf("\nEnter the second number: "); scanf("%d",&operand2); printf("\nEnter ...

Sunday, August 21, 2011

How to find Grade equivalent using C Language

0 comments

This program was the first requested tutorial on C programming Language using the Turbo C++ IDE. This source code will determine the corresponding equivalent of your grade using the conditional structure if & else and selective structure switch. Requested by: Jp Natividad #include<stdio.h>#include<conio.h> float eq; // global variable void main() // main function{clrscr(); ...

Friday, August 19, 2011

What is C Programming Language?

0 comments

C Programming Language is a general-purpose computer programming language developed by Dennis Ritchie between 1969 and 1973 at the Bell Telephone Laboratories for use with the Unix operating system. C is one of the most widely used programming languages for various reasons. It has high-level constructs. It can handle low-level activities. It produces efficient programs. It can be ...

Saturday, August 13, 2011

Kidney Kard

0 comments

The Kidney Kard is a comprehensive collection of the tools needed to interpret acid-base, renal, and electrolyte problems especially in patients with chronic or acute renal failure. Medical students, residents, fellows in nephrology or urology, and physicians taking care of patients with kidney problems will find the Kidney Kard useful with a flick or click of their fingers. If the ...

Parents Diagnostic Aid (PDA)

0 comments

Parent’s Diagnostic Aid, a new tool to help your child A doctor’s office with a wall to wall mothers and children can be hazardous to your child’s health. Why? It is probably one of the leading cause of medical and diagnostic errors. About 45% of 1362 USA pediatricians, in a survey reported at the July 2010 issue of PEDIATRICS, a popular reading journal of pediatricians, made a wrong ...