Is Exception handling possible in c language?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to convert fahrenheit to celsius?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
What is structure packing ?
What is the difference between ‘g’ and “g” in C?
What is pointers in c with example?
Write a program to find minimum between three no.s whithout using comparison operator.
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
When should structures be passed by values or by references?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.