What is true about the following
C Functions
a.Need not return any value
b.Should always return an integer
c.Should always return a float
d.Should always return more than one value.
Answer Posted / nisha
dont give any anws without explanation..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Can you write the algorithm for Queue?
Is swift based on c?
How is a null pointer different from a dangling pointer?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Can you apply link and association interchangeably?
Explain high-order bytes.
Explain the concept and use of type void.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How can you return multiple values from a function?
Can we add pointers together?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
How can you access memory located at a certain address?
How would you obtain the current time and difference between two times?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }