Data types in C refer to how much memory it occupies in storage and how the bit pattern stored is interpreted. To thoroughly define a variable, one needs to mention not only its type but also its storage class. There are the following types of data types in C: Basic Types: They are arithmetic types […]
February 9, 2022 | C | No comments
Variables & Constants in C are formed by combining alphabets, numbers, and special symbols. Let us see what are ‘constants’ and ‘variables’ in C. Variables: An entity that may change during program execution is known as a variable. Variables are the names assigned to the memory locations. These locations can contain integer, real, or character […]
February 8, 2022 | C | No comments
JMS messaging pattern is widely used for asynchronous communication. JMS is introduced between the Source and Target systems and the communication happen through messaging only.
February 6, 2022 | Mule 4, Mulesoft | No comments
Identifiers in C are the basic building block of a program. As the name suggests, they are used to identify user-defined objects. For instance, variables, functions, arrays, structures, unions, labels, etc. An identifier starts with a letter A to Z, a to z, or an underscore ‘_’ followed by zero or more letters, underscores, and […]
February 5, 2022 | C | No comments
readUrl Example
February 5, 2022 | Dataweave | No comments
ThereadUrlfunction is similar to the read function, but it accepts URL as an input and the remaining parameters remain the same as the read function.
February 5, 2022 | Dataweave | No comments
Reads a string or binary and returns parsed content.
This function can be useful if the reader cannot determine the content type by default.
February 5, 2022 | Dataweave | No comments
Anypoint Connector for JMS (Java Message Service) (JMS Connector) enables sending and receiving messages to queues and topics for any message service that implements the JMS specification.
February 4, 2022 | Mule 4, Mulesoft | No comments
There is a close analogy between learning the English language and learning the C language. We start learning English by learning about alphabets, further create words and sentences by combining the words, Similarly, in C we learn about tokens which are the smallest individual unit in a program, they can either be a keyword or […]
February 4, 2022 | C | No comments
Before we begin with our basic concepts of the C programming language let’s take a look at the C Program -Structure of a simple code for better understanding.
February 3, 2022 | C | No comments