Is that possible to store 32768 in an int data type variable?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How can I get back to the interactive keyboard if stdin is redirected?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
What is extern c used for?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
biggest of two no's with out using if condition statement
What is typedef struct in c?
Is struct oop?
Are global variables static in c?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }