š„C - Instructions and Operatorsš„
We are here learning the instruction and compilation working by compiler in C
//We are here learning the instruction and compilation working by compiler in C
#include <stdio.h>
int main()
{
int a = 4, b;
b = a + 2;
printf("Here is the Value of b :- %d", b); //its Right
return 0;
}
#include <stdio.h>
int main()
{
int b = a + 2; //becuse it compile line bt line and it first compile this ine and cannot find the value of a and declaration of a
int a = 4, b;
printf("Here is the Value of b :- %d", b); //its Wrong
return 0;
}
Here we are learning how to use the math.h to implement the math operation in c language and arithmetic operations
//We are here learning the instruction and compilation working by compiler in C
#include <stdio.h>
int main()
{
int a = 4, b;
b = a + 2;
printf("Here is the Value of b :- %d", b); //its Right
return 0;
}
#include <stdio.h>
int main()
{
int b = a + 2; //becuse it compile line bt line and it first compile this ine and cannot find the value of a and declaration of a
int a = 4, b;
printf("Here is the Value of b :- %d", b); //its Wrong
return 0;
}
dfv
Comments
Post a Comment