Program to decide whether a given number is positive, negative or zero number.
Here, user will input a number and program will assign it in variable 'a' using scanf. After that, the value in…
November 13, 2020Here, user will input a number and program will assign it in variable 'a' using scanf. After that, the value in…
Naren November 13, 2020Structure is a user defined data type which hold or store homogeneous data item or element in a single variable. It is …
Naren November 08, 2020A ndroid Studioo is the official IDE for Android development, and with a single download includes everything you need t…
Naren October 30, 2020Google, releases almost every year (or even sooner than a year), a new Android version in order to update the mobile o…
Naren October 29, 2020- Any professional individual like doctors, engineers, businessman etc undergo a change in their style or working patt…
Naren October 28, 2020P rime numbers are divisible only by 1 and by themselves. 2,3,5,7,11 etc are prime numbers. These numbers are only divi…
Naren October 28, 2020P rime Numbers are those which have only 2 factors; by 1 and by themselves own. For examples, the first five prime num…
Naren October 28, 2020F inding security vulnerabilities in some of the most important software or website and give a warning message to the …
Naren October 25, 2020M icrowave system use very high frequency radio signals to transmit data through space (wireless communication). Tran…
Naren October 18, 2020S imple Mail Transfer Protocol (SMTP) is the standard protocol for email services on a TCP/IP network. SMTP provides t…
Naren October 14, 2020Lots of people, are now engaged in developing android mobile application because of the reason that android has become …
Naren October 07, 2020A function is a group of statements that together perform a specific task. Function is a block or part of program. A f…
Naren August 05, 2020A n array is a collection of similar data type which is stored in a consecutive memory location in a single variable. I…
Naren July 21, 2020T o print the multiplication table we have to use for loop. Inner loop is used here where two varriable are plays vital…
Naren July 05, 2020Output Explanation Here, nested for loops is used. The varriable i initialize from 1 and then passes throu…
Naren May 02, 2020Explanation, Here, i is initialized with value and in every loop, value in i increase by 2 until the condition ge…
Naren April 22, 2020Explanation In this program, n stores a number and i is an increment. The loop start from 1 and ends on 10. Inside …
Naren April 04, 2020Explanation Here the variable s denotes to sum and is initialized with value 0. When the loop begins, the s adds th…
Naren April 02, 2020Explanation Here, in the program, two variables are used n and i . n stores number inputted by user and "i&…
Naren April 02, 2020Here, I have used Dev C++ platform, it is easy to download. In this program, integer "i" is declared. For …
Naren March 26, 2020T he goto statement is also known as jump statement that makes a program procedure to jump any where from anywhere with…
Naren March 13, 2020B reak statement when encountered in the loop it immediately break the loop and program resumes at the line following t…
Naren March 12, 2020Nowadays, social medias such as Facebook, Twitter, Instagram are full of information related to Corona virus. Almost ev…
Naren March 08, 2020Explanation: Here number is inputted in variable 'day' and when it is equivalent with day in week an…
Naren March 08, 2020F unctions are used for dividing a large code into module, due to this we can easily debug and maintain the code. For e…
Naren March 07, 2020Explanation Here Switch case plays a role of nested if else statement. It is an alternative way of if else stat…
Naren March 07, 2020E xplanation Here, per stores float percentage. It has been checked and if it is above 100 or below 31 it will pr…
Naren March 04, 2020Explanation :Here three variables are declared a,b and c. The numbers in a,b and c are checked considering a …
Naren March 02, 2020Explanation, Here name is string so as it is defined as character of array 50. The specifier is %s is used t…
Naren March 02, 2020