main()
{
char ch='356';
Printf("%d",ch);
}
*OUTPUT*:-
-18
*Why?*
write a program which counts a product of array elements lower than 10.
second highest number in a given set of numbers
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Explain what is the best way to comment out a section of code that contains comments?
Explain output of printf("Hello World"-'A'+'B'); ?
write a method for an array in which it can display the largest n next largest value.
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Is main() function predfined or userdefined?
Explain the term printf() and scanf() used in c language?
What does a function declared as pascal do differently?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..