What is string length in c?
Write a program to know whether the input number is an armstrong number.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is the use of gets and puts?
Write a program to print all permutations of a given string.
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Do you know what are bitwise shift operators in c programming?
Is multithreading possible in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is the difference between null pointer and wild pointer?
Can we use any name in place of argv and argc as command line arguments?
int i=10; printf("%d %d %d", i, i=20, i);
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What do you mean by keywords in c?