write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
IBM,
2255how to print the character with maximum occurence and print that number of occurence too in a string given ?
2472write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
1995why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
1969what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
6 8534Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
1 4991main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
2 3956#include
IIIT,
4 11173write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
TCS,
2 6205write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
TCS,
2363
Explain how do you print only part of a string?
can we change the default calling convention in c if yes than how.........?
What is the difference between local variable and global variable in c?
Why is extern used in c?
What is the difference between variable declaration and variable definition in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Which header file is used for clrscr?
What is dynamic variable in c?
What is the benefit of using #define to declare a constant?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What does void main return?
Tell me what are bitwise shift operators?
in linking some of os executables are linking name some of them
What is the role of && operator in a program code?
What is a floating point in c?