What library is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a programme to convert temperature from farenheit to celcius?
What are the types of functions in c?
What does %d do?
Is main is user defined function?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
what is difference between procedural language and functional language ?
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
What is floating point constants?
What is the use of getchar() function?
What does the c in ctime mean?
When should a type cast not be used?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50