How to draw the flowchart for structure programs?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What is the purpose of scanf() and printf() functions?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
tell me the full form of 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 ].
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What are the different types of C instructions?
Who developed c language and when?
Explain what standard functions are available to manipulate strings?
How can I implement a delay, or time a users response, with sub-second resolution?