Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
int x=sizeof(!5.856); What will value of variable x?
What is the purpose of sprintf() function?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
How are Structure passing and returning implemented by the complier?
Is it possible to run a c program without using main?If yes HOW??
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
List some applications of c programming language?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
swapping of two numbers without using third variable using AND and OR operators
What is printf () in c?