Answer Posted / ashik
#define swap(a,b) a^=b^=a^=b;
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Write a program to print fibonacci series without using recursion?
Where we use clrscr in c?
What is the difference between typedef struct and struct?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is the process to generate random numbers in c programming language?
What is a method in c?
Are there constructors in c?
Explain the process of converting a Tree into a Binary Tree.
What is 02d in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Between macros and functions,which is better to use and why?
Explain how does flowchart help in writing a program?
Explain how do you view the path?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Where are some collections of useful code fragments and examples?