main()
{
char ch='356';
Printf("%d",ch);
}
*OUTPUT*:-
-18
*Why?*
Differentiate call by value and call by reference?
What is undefined behavior?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is the use of the sizeof operator?
what does ‘Bus Error’ mean?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
write a program to add two numbers of any size.....(remember any size)
How can I allocate arrays or structures bigger than 64K?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
write an algorithm and a program to count the number of elements in a circularly singly linked list
Explain what is wrong with this statement? Myname = ?robin?;