Is Exception handling possible in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain pointer. What are function pointers in C?
Where is volatile variable stored?
Do you know what are bitwise shift operators in c programming?
What is modifier & how many types of modifiers available in c?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
Function to find the given number is a power of 2 or not?
int *a[5] refers to
how would a 4*3 array A[4][3] stored in Row Major Order?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is graph in c?
When was c language developed?