what will be maximum number of comparisons when number of
elements are given?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert decimal to binary in C using recursion??
What is the scope of an external variable in c?
What is the use of the function in c?
Is a pointer a kind of array?
What is multidimensional arrays
what is the difference between #include<stdio.h> and #include"stdio.h" ?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
Can you pass an entire structure to functions?
How can I call a function, given its name as a string?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }