plz let me know how to become a telecom protocol tester.
thank you.
No Answer is Posted For this Question
Be the First to Post Answer
Which is better malloc or calloc?
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
How can I insert or delete a line (or record) in the middle of a file?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
write a program without using main function?
What is a good data structure to use for storing lines of text?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
Explain what is the difference between text files and binary files?
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
what is the program to display your name in any color?
write a program for the normal snake games find in most of the mobiles.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output