diff between exptected result and requirement?
Why enum is used in c?
Differentiate between calloc and malloc.
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Write a function to find the area of a triangle whose length of three sides is given
What is the use of void pointer and null pointer in c language?
What are the average number of comparisons required to sort 3 elements?
input any 4 digit number and find the difference of all the digits?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
What are data types in c language?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
What are formal parameters?
write a program for odd numbers?