How do I swap bytes?
No Answer is Posted For this Question
Be the First to Post Answer
what is unsigened char and what is the difference from char
What is the benefit of using const for declaring constants?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
explain what is an endless loop?
How do you determine whether to use a stream function or a low-level function?
Program to simulate second clock
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion
Write a program to print fibonacci series using recursion?
Which header file is essential for using strcmp function?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)