Answer Posted / mohammed
Important pitfalls
Value of the variable stored in register of cpu not for memory
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Is a house a mass structure?
How to implement a packet in C
What does node * mean?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What does typedef struct mean?
Why c language is called c?
Differentiate between the = symbol and == symbol?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is a program flowchart?
What are the types of arrays in c?
Differentiate between calloc and malloc.
Difference between malloc() and calloc() function?
Tell me about low level programming languages.
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping