Home
New MCQS
Learn German language
Data Structure
Singly Linked List Data Structure in C
Circular Linked List in data Structure
Doubly Linked List in data structure
Array Data structure
String Data structure
Stack Implementation by array
Stack implementation by Linked list
Linear Queue Implemented by Array
Queue Implementation by linked list
Searching
Sorting Algorithm in Data structure
Circular Queue in Data Structure
Tree & Graph Data Structure
Binary Search Tree in Data structure
Complexity in Data Structure
C++ Language
Introduction to C++ and oop
200 program in C++
Exception Handling in C++
Sound programming in C++
Canvas Graphics in C++
C Language
Introduction to C + 200 Programs
Graphics in C
Snake game by C program
File Handling
Sqlite3 in C
Exception Handling in C
Sound programming
Servlet
Introduction and overview of Servlet
Servlet API
Event and Listener in Servlet
Session Tracking
Servlet exceptions
Attribute in Servlet
Servlet IDE
Advanced Servlet
JSP
Introduction of jsp
More on JSP
Tags in JSP
Scriptlet tag in JSP&JSP declaration tag
JSP directives
Create First JSP Page
JSP Include Directive
JSP Taglib directive
Exception Handling in JSP
JSP Action Tags
Expression Language (EL) in JSP
MVC in JSP
Custom Tags in JSP
Registration Form in JSP
JSTL (JSP Standard Tag Library):
JSTL (JSP Standard Tag Library):
JSP include action tag
JSP Sessions
JSP Implicit Objects
Introduction to implicit objects
OUT Implicit Object in JSP
Request Implicit Object in JSP
Response Implicit Object in JSP
Session Implicit Object in JSP
Application Implicit Object in JSP
Exception Implicit Object in JSP
pageContext Implicit Object in JSP
Config Implicit Object in JSP
Python
300 Python programs
Tkinter in python
Numpy in Python
Pandas in Python
Sqlite3 in Python
Library/Framework overview in Python
Project- Python (Tkinter and sqlite3)
Spring
Spring Framework
Basic of Spring Framework
Spring with IDE
Spring IoC Containers
Bean in spring framework
Aspects Oriented Programming(AOP) with Spring
Dependency Injection in Spring
DAO support in Spring
Data access with JDBC
Object Relational Mapping (ORM) Data Access
Spring Expression Language (SpEL)
Spring Transaction Management
Object XML Mappers(OXM) Frameworks
Spring Web MVC Framework
Remoting and web services using Spring
Spring Web Services
web services using jax-ws in Spring
JMS (Java Message Service)
JMX(Java Management Extension)
Java Mail with Spring
Enterprise JavaBeans (EJB) integration with spring
Spring With Struts 2 Integration
Spring Boot
Spring Boot Tutorial
Spring Boot
Hibernate
Hibernate Tutorial for beginners with Examples
Hibernate Tutorial for beginners with Examples
Mapping in Hibernate or Association Mapping in Hibernate
Database Portability Considerations
Mapping with Annotation in Hibernate
Collection mapping
Basic O/R Mapping
Caching machanism
Hibernate Mapping types
HQL: The Hibernate Query Language
Join in hibenrate
Advanced collection mappings
Batch processing
Native SQL
Criteria Queries
Fetching strategies in Hibernate From the DataBase
Hibernate Step By Step Application Using Struts On NetBeans
Hibernate Step By Step Application Using Swing On NetBeans
Hibernate Step By Step Application Using Spring On NetBeans
Hibernate Step By Step Application Using Servlet On NetBeans
Interceptors and events
Filtering data in Hibernate
Working with objects
XML Mapping in Hibernate
Transactions and Concurrency in Hibernate
Inheritance mapping
Component Mapping In Hibernate
Use of Configuration in Hibernate
Persistent Classes in Hibernate
Toolset Guide in Hibernate
Difference Between Save and Persist Method
MCQS
Python MCQs
General knowledge(GK) MCQs
Chemistry MCQs
Mathematics MCQs
Physics MCQs
Computer MCQs
Sociology MCQs
Spring Boot MCQs
English MCQs
NEET Test Series-2021 to 2022 MCQs
Geography MCQs
Civics MCQs
Economics MCQs
History MCQs
HTML MCQs
C/C++ MCQs
Computer Hardware and Networking MCQs
JavaScript MCQs
Unix/Lunux MCQs
C# (.NET Framework) MCQs
UPSC,PCS,CDS,NDA & SSC Examinations. MCQs
Business Studies MCQs
Biochemistry MCQs
Biology MCQs
Zoology MCQs
SEO/Onilne Marketing MCQs
Engineering MCQs
Current affairs MCQs
Aptitude MCQs
Botany MCQs
General Science MCQs
PHP MCQs
SQL MCQs
Political Science-[FPSC-U.S A. CSS] MCQs
CSS[FPSC-U.S. Civil Service Commission]-USA MCQs
SAT MCQs
GRE MCQs
ECAT MCQs
MCAT MCQs
NTS MCQs
Java MCQs
JSP MCQs
Android MCQs
Angular JS MCQs
Bootstrap MCQs
COBOL MCQs
CSS MCQs
DB2 MCQs
Design Patterns MCQs
EJB MCQs
Apache Hadoop MCQs
Hibernate MCQs
HTML5 MCQs
JDBC MCQs
jUnit MCQs
Jquery MCQs
log4j MCQs
Maven MCQs
MVC MCQs
MongoDB MCQs
Node JS MCQs
Perl MCQs
Servlets MCQs
Spring MCQs
WebServices MCQs
PPSC MCQs
Agriculture MCQs
KPPSC MCQs
CTET MCQs
Reasoning MCQs
BANK MCQs
MCA MCQs
MBA MCQs
RRB MCQs
IIT JEE MCQs
SSC MCQs
Ember.js MCQs
Vue.js MCQs
Angular MCQs
Google Cloud Platform(GCP) MCQs
Algorithm MCQs
Shell Scripting MCQs
Cloud Computing MCQs
Selenium MCQs
Data structure MCQs
Ruby MCQs
VHDL MCQs
Struts MCQs
JSF MCQs
J2ME MCQs
ANT MCQs
AJAX MCQs
WML MCQs
ASP.Net MCQs
SilverLight MCQs
MS-SQL MCQs
ADO.Net MCQs
WPF MCQs
WCF MCQs
Interview Questions Answers
Python Interview Questions Answers
General knowledge(GK) Interview Questions Answers
Computer Interview Questions Answers
Spring Boot Interview Questions Answers
HTML Interview Questions Answers
C/C++ Interview Questions Answers
Computer Hardware and Networking Interview Questions Answers
Articles
Signed and unsigned integer in C language
by
R4R Team
Signed Integer :
Syntax-
int variable;
Range:-32,768 to 32,767
Unsigned Integer:
Syntax-
unsigned int variable;
Range:0 to 65,535
Why unsigned Integer ?
-For increase the range of the integer.
program-
#include< stdio.h>
int main()
{
int i=20;
unsigned int j=4;
printf("%d\n",i);
printf("%d",j);
}
output-
20
4
Note:range of integer variable may be varies depends on the compiler.
Leave a Comment:
Submit
Search
Go!
Categories
Second largest element in array
Second smallest number in array
Find middle element in array
Square the array in C
Cube the array in C
Square root of the number
Cube root of the number
Square root of the array
Swap element in array
Make matrix in C
Input in matrix in C
Traverse the matrix in C
Add two matrix in C
Subtract two matrix
Multiple two matrix in C
Transpose of the matrix
Find diagonal element of the matrix
Sum of diagonal element of matrix
Product of diagonal elements of matrix
Sum of all element of array
Product all number in Array
Sum of all element in matrix
Row-wise addition in Matrix
Column-wise addition of matrix
Find maximum number in Matrix
Find minimum in Matrix
Occurrence of the number in array
Occurrence of number in Matrix
Search item in Matrix
Rotate the array in C
Find average of the number
Find average of array value
Find median of the sorted array
Compare two matrix in C program
Make your own header file in C language
Find Sum of square of digit of number in C
Delete item in array by C program
Delete max number in array in C program
Delete min element in array in C program
Sum of max and min element of array in C
Difference between max and min value of array
Copy one string into another in C program
Length of string in C language
Concatenate two string in C language
string.h header file in C
strcat() function in C
Compare two string in C
strcmp() function in C
strcpy() function in C
strncmp() function in C
strncpy() function in C
strchr() function in C
Reverse the string in C
strrev() function in C
Palindrome string in C
Calindrome string in C
Find table of the given number in C
Find gross salary in C
Find area of triangle in C
Find area of rectangle in C
Find area of circle in C
Calculate the percentage in C
Find simple interest in C
Decimal to binary conversion in C
Decimal to octal conversion in C
Decimal to Hexadecimal conversion in C
Binary to decimal conversion in C
Octal to decimal conversion in C
Hexadecimal to decimal conversion in C
Octal to binary conversion in C
Hexadecimal to binary conversion in C
Print Fibonacci series in C
Check perfect number in C
Find LCM in C program
Find HCF in C program
Check vowel in C program
Check vowels by switch case in C
Make complex number in C
Add two complex number in C
Subtraction of two complex number in C
Multiplication of complex number in C
Find modulus of complex number in C
Negation of complex number in C
What is recursion in C
What is pointer in C
call by value in C program
Call by reference in C
Structure in C
Union in C
Type casting in C
Left shift in C
Right shift in C
AND bitwise operator in C
OR bitwise operator in C
exit() function in C language
#define in C language
sin() function in C
cos() function in C
tan() function in C
print Hello_World without using semicolon in C
Print character by ASCII value in C
Check positive or negative number in C
Even or odd number in C
Find Maximum Between two number
Minimum between two number
Minimum Between three numbers
Maximum in three number
Swap two variable using third variable in C
Swap two variable Without using third variable in C
Find maximum in array
Find minimum in Array
Factorial of number in C
Make Factorial Function in C
Factorial by the Recursion
Check prime number in C
Make function to check prime number
Increment operator in C
Decrement operator in C
Goto Statement in C
Factorial by goto statement in C
Recursion in C
Print first 10 prime number
pow() function in C
Find square of the number
Find cube of the number
Find a to the power b in C
Check character is alphabet or not
Check special character in C
Check Uppercase character in C
Check lower case Character in C
Convert uppercase into lowercase letter
Convert lower case into Upper case
Find number of digit in given integer
Reverse the number in C
Palindrome number in C
Copy one variable into another variable
Commands in C
Find Length of the number
Armstrong Number in C
Armstrong number between 1 to 100
Prime number upto 100
Take input in Array
traverse the array in C
Store one array into another array
Reverse the array in C
Reverse the array from the middle
Left shift in array
Right shift in array in C
Find length of the array in C
Search the item in Array
Add two array in C
Subtract two array in C
Multiple two array in C
Add number to array in C
Subtract number from array
Multiply number to array
Sort the array in increasing order
Sort the array in descending order
Binary search in C program
Data Type in C
Storage Class in C
Format Specifier in C
Take input from console in C
What is line break in C programming
Take input of the string in C language
Decision making in C
if statement in C language
if else in C language
Nested if in C language
Switch case in C language
Default keyword in Switch case in C
break statement in Switch case in C
Nested Switch case in C language
Conditional Expression in C
gets() function in C
Clrscr() in C
getch() in C
Loops in C language
For loop in C language
While loop in C language
do while loop in C language
Nested Loop in C language
Infinite loop in C language
break statement in loops in C language
Continue Statement in C
Signed and unsigned integer in C language
Function in C language
Return integer from the function in C
Return String from the function in C language
Pass argument in Function in C language
Scope of the variable in C
Array in C language
Addition of two number in C language
Subtraction of two number in C language
Multiplication of two number in C
Division of two number in C
Modulus of two number in C language
Find ASCII value in C language
Hello World Program in C language
Introduction of C language
Introduction to C + 200 Programs
Graphics in C
Snake game by C program
File Handling
Sqlite3 in C
Exception Handling in C
Sound programming
Core Java
Core Java Interview Question Answers
Hibernate
Hibernate Interview Question Answers
Servlet
Servlet Interview Question Answers
MYSQL
MYSQL Interview Question Answers
JavaServer Pages (JSP)
JavaServer Pages (JSP) Interview Question Answers
Spring
Spring Interview Question Answers
Struts 2
Struts 2 Interview Question Answers
J2ME
J2ME Interview Question Answers
General Knowledge
General Knowledge Interview Question Answers
Spring boot
Spring boot Interview Question Answers
Python
Python Interview Question Answers
c language
c language Interview Question Answers
C++ language
C++ language Interview Question Answers
Data Structure using c
Data Structure using c Interview Question Answers
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!