Which is more efficient, a switch statement or an if else chain?
No Answer is Posted For this Question
Be the First to Post Answer
What is strcmp in c?
What are the types of functions in c?
WHOT IS CHAR?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is assert and when would I use it?
write a program to swap Two numbers without using temp variable.
75 Answers EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
how to get the starting address of file stored in harddisk through 'C'program.
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
how to find greatet of 10 numbers without using array?
What are the advantages of union?