Skip to content

Instantly share code, notes, and snippets.

@HabibulHH
Created September 21, 2021 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HabibulHH/ed64b2044e6bcb0ff9c36fd76152100c to your computer and use it in GitHub Desktop.
Save HabibulHH/ed64b2044e6bcb0ff9c36fd76152100c to your computer and use it in GitHub Desktop.
primitive vaar;
int x = 12 ; // x name ekta jayga alllocation: int , float /
for int // 4;
string // 30 ;
int x = 10;
x = "sdjfkljsdkfj"
$x hexcode
[ADASS,M,MA,M,.ASDJLKAJLS]
[]
// static type language c c++ java , c#
// dyamic : js , php , pyhthon
int x[5] = [12,2,23,3,3]
[6,6,7]
RAM -- 16GB -->>
{
[] 1MB
}
RAM --2gGB
Thread : [100000000]
core i5 = 12
1-1000
1001 - 2001
@Mostasimleon
Copy link

#include <stdio.h>
#include <stdlib.h>

int main()
{
int number,wh;
float pph,salary;
scanf("%d%d%f", &number, &wh, &pph);
salary = wh*pph;
printf("NUMBER = %d\nSALARY = U$ %.2f\n", number, salary);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment