Explain about the functions strcat() and strcmp()?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find larger of the two numbers without using if-else,while,for,switch
Explain why c is faster than c++?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What are the storage classes in C?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
How would you write qsort?
Why is not a pointer null after calling free?
what is the output of below int n=10; (n++)++; printf("%d",n);
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above