Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged data-types
2
2 votes
1
1 answer
174
174 views
UGC NET CSE | December 2025 | Part 2 | Question: 15
For implicit type conversion, arrange the following from a lower size type to a high type size.doubleunsigned long intunsigned intlong doublelong intChoose the correct an...
Shubham Sharma 2
174
views
asked
Apr 19
Programming in C
ugcnetcse-dec2025
programming-in-c
data-types
+
–
2
2 votes
6
6 answers
4.2k
4.2k views
UGC NET CSE | December 2005 | Part 2 | Question: 11
What is the output of the following $C$-programmain() { printf("%d %d %d",size of (3.14f), size of (3.14), size of (3.141)); }4 4 44 8 108 4 88 8 8
go_editor
4.2k
views
asked
Mar 27, 2020
Programming in C
ugcnetcse-dec2005-paper2
programming-in-c
data-types
+
–
1
1 vote
3
3 answers
1.0k
1.0k views
#userdefined Data type union in C
What is the output of the program? int main() { union a { int i; char ch ; }; union a u; u.ch[0] = 3; u.ch = 2; printf("%d, %d, %d", u.ch[0], u.ch , u.i); return 0; }
shiva0
1.0k
views
asked
Apr 3, 2019
Programming in C
programming-in-c
data-types
+
–
0
0 votes
0
0 answers
385
385 views
Data type size
My doubt is very basic, I want to understand what is the use of signed and unsigned used with integer.?2.what does size of signed int (-128 to 127) signify?3how to big en...
Mayankprakash
385
views
asked
Jul 15, 2018
Programming in C
data-types
+
–
2
2 votes
2
2 answers
5.9k
5.9k views
char output in c. Predict the output of following C programs
Predict the output of following C programs1.#includeint main(){ char a = '\012'; printf("%d", a); return 0;}2.#includeint main(){ char a = '012'; printf...
Khushal Kumar
5.9k
views
asked
Jul 4, 2017
Programming in C
programming
programming-in-c
output
data-types
+
–
7
7 votes
4
answers
4 answers
3.5k
3.5k views
GATE Overflow | Programming | Test 1 | Question: 6
The output of the following C program will be _____#include<stdio.h #define type int type foo(type b) { return b*b; } #undef type #define type float int main() { float a ...
Arjun
3.5k
views
asked
Oct 18, 2016
Programming in C
go-programming-1
programming
programming-in-c
data-types
numerical-answers
two-marks
+
–
0
0 votes
1
1 answer
1.8k
1.8k views
UGC NET CSE | June 2010 | Part 2 | Question: 15
The data type created by the data abstraction process is calledClassStructureAbstract data typeUser defined data type
Misbah Ghaya
1.8k
views
asked
Sep 15, 2016
Programming in C
ugcnetcse-june2010-paper2
programming
data-types
+
–
2
2 votes
2
answers
2 answers
2.1k
2.1k views
UGC NET CSE | December 2011 | Part 2 | Question: 33
If an integer needs two bytes of storage, then the maximum value of unsigned integer is$2^{16} – 1$$2^{15} – 1$$2^{16}$ $2^{15}$
Misbah Ghaya
2.1k
views
asked
Aug 19, 2016
Programming and DS
ugcnetcse-dec2011-paper2
programming-in-c
data-types
+
–
To see more, click for the
full list of questions
or
popular tags
.