• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

C Quiz - 107 | Question 3

In a C program snippet, followings are used for definition of Integer variables? C
  signed s;
  unsigned u;
  long l;
  long long ll;
Pick the best statement for these.

(A)

All of the above variable definitions are incorrect because basic data type int is missing.

(B)

All of the above variable definitions are correct because int is implicitly assumed in all of these.

(C)

Only “long l;” and “long long ll;” are valid definitions of variables.

(D)

Only “unsigned u;” is valid definition of variable.

Answer

Please comment below if you find anything wrong in the above post
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated :
Share your thoughts in the comments