main()
{
char ch='356';
Printf("%d",ch);
}
*OUTPUT*:-
-18
*Why?*
Write a function that will take in a phone number and output all possible alphabetical combinations
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
What is getch () for?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
Explain the red-black trees?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
How reliable are floating-point comparisons?
difference between string and array?
Who is the main contributor in designing the c language after dennis ritchie?
How we can write a value to an address using macro..?
What is the difference between fread buffer() and fwrite buffer()?