What does %f mean c?
Answer / amit
%f mean in C is that it is a format specifier of float data type which store decimal value up to 4 bit ,simply it indicate data type
| Is This Answer Correct ? | 0 Yes | 0 No |
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
related proverb of "dont count your chicken before it hatches"
What are the types of bitwise operator?
number of times a digit is present in a number
WHAT IS INT?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
what does ‘Bus Error’ mean?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
what is a function pointer and how all to declare ,define and implement it ???
What 'lex' does?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .