How are 16- and 32-bit numbers stored?
No Answer is Posted For this Question
Be the First to Post Answer
What is #include in c?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Under what circumstances does a name clash occur?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
Can a program have multiple main() functions?
When should you not use a type cast?
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.
What is string concatenation in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
can i know the source code for reversing a linked list with out using a temporary variable?