What's the best way of making my program efficient?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of printf("%d", printf("Hello"));?
What is pointer in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
How many types of arrays are there in c?
How do you generate random numbers in C?
Can static variables be declared in a header file?
What is main function in c?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
how to construct a simulator keeping the logical boolean gates in c
What is the purpose of ftell?