Variables in C Language: (1) In C language when we develop or built logic, we need variables that store information like amount, string or character. For storing this type of information, the C language provides variables like int, float, and char. (2) Sample C language code using all variables and their output, as shown: #include <stdio.h>#include …
scanf() Use in C Language: (1) scanf() is used for entering input values. (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h> int main(){int n;printf(“Enter the value: “);scanf(“%d”,&n);printf(“Entered value is: %d”, n);getch();return 0;} (3) After that go to the “Build” menu and select the “Build” option for publishing the code as shown. (4) …
Use printf() in C Language: (1) printf() is used for printing output value. (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h>int main(){printf(“My First C Programme”);getch();return 0;} (3) After that go to the “Build” menu and select the “Build” option for publishing the code as shown. (4) After building the code, press …
C Language Syntax: (1) C Language is designed by “Dennis Ritchie”. (2) C Language is a procedural programming language. (3) C Language is designed to be compiled to provide low access to memory. (4) For learning the C language, first install the editor and compiler. For this, refer to the blog “Install Code Blocks for C …
Install Code Blocks for C Language on Windows: (1) In this blog we will see the installation of “Codeblocks” in windows for C language. Open the URL (https://www.codeblocks.org/downloads/binaries/) and click the marked links, as shown. (2) After that new URL open and click on the “Download” button, as shown. (3) After the download is complete. Go …
Restore and Change in Pages by using Personalize in BC D365: (1) In BC D365, there is a feature “Personalize” in which the user can change, adjust, hide & show the fields on the Page as per his requirement. (2) For this, open the page and make the changes via Personalize feature, lets take an example, …
Check Changes in Pages via Personalize Feature in BC D365: (1) In BC D365, there is a feature “Personalize” in which the user can change, adjust, hide and show the fields in Page as per his requirement. In BC D365 Microsoft provides a list in which you can see the list of the Personalized Pages with …
Sales Register Report in D365 BC: (1) In this blog we will do the development of the “Sales Register” or “Sales Summary” report in D365 BC. (2) For developing Sales Register Report: Use Dataitem: Sales Invoice Header and Sales Cr. Memo Header as shown. Header Part: Variable Initialize: Body Part of Sales Invoice: Body Part of …