What does 1f stand for?
Answer / Ram Pravesh Sahni
In C programming language, 1f is not a valid symbol. It could be a typo or a misunderstanding as it resembles the format specifier for an if statement, but it's incorrect.
| Is This Answer Correct ? | 0 Yes | 0 No |
code for inverse a matrix
Which one would you prefer - a macro or a function?
What is structure padding in c?
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
What are the various topologies? Which one is the most secure?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
7 Answers Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
How main function is called in c?
how to devloped c lenguege?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }