I'm not sure what that is.
P E M D A S means
Please ()
Excuse 3
My Multiplication
Dear Division
Aunt Addition
Sally Subtraction
Order of Operations
Multiplication is done at the same step as division and Addition is done at the same step as subtraction.
United Nations Development Programme
P Park R Reverse N Neutral D Drive 2 Second gear L Low gear
notre dame special person
If you know that n/d = p% where d and p are known, then n = d*p/100.
D is Denver, P is Philadelphia.
park
A leader who is not in any political party ll ve to sing independent.
void main() { int n=0,i,*p; clrscr(); printf("enter the value of n"); scanf("%d",&n); p=&n; for(i=0;i<=n;i++) { *p=*p+i; } printf("value of the sum is %d",*p); getch(); }
#include<stdio.h> #include<conio.h> void main() { int n,p,i; printf("\n enter the noof which u want to see the table"); scanf("%d",&n); for(i=1;i<=10;i++) { p=n*i; printf("\n%d *%d=%d",n,i,p); } getch(); }
k-i-d-n-a-p-p-e-d is the correct spelling.
#include<stdio.h> #include<conio.h> void main() { int n,p=1,i; //p is foe multiplication print("enter how many no u want to enter"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("enter no"); scanf("%d",&no); p=p*no; } printf("product of n no=%d",p); getch(); }