Explain what is a program flowchart and explain how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
What's wrong with "char *p; *p = malloc(10);"?
Can we access the array using a pointer in c language?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Difference between MAC vs. IP Addressing
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are the different types of pointers?
What is structure padding in c?
Why static variable is used in c?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Why is c used in embedded systems?
What is union and structure in c?
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 ].