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 x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is the 'named constructor idiom'?
What are the functions to open and close file in c language?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
The __________ attribute is used to announce variables based on definitions of columns in a table?
Explain high-order and low-order bytes.
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the acronym for ansi?
What's wrong with "char *p = malloc(10);" ?
What is the output of printf("%d", printf("Hello"));?