Explain that why C is procedural?
No Answer is Posted For this Question
Be the First to Post Answer
What are the various topologies? Which one is the most secure?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Linked lists -- can you tell me how to check whether a linked list is circular?
Explain why c is faster than c++?
What is getch () for?
What does %p mean c?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is else if ladder?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?