What are static functions?
Answer / nashiinformaticssolutions
Functions declared with static have internal linkage, accessible only within the file.
Is This Answer Correct ? | 0 Yes | 0 No |
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
how to get starting address of a running C program
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is getche() function?
what are bps & baud rates? differentiate these two?
4. main() { int c=- -2; printf("c=%d",c); }
Why is structure padding done in c?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
Write code for atoi(x) where x is hexadecimal string.
Explain the use of bit fieild.
How do you print only part of a string?
What are the types of assignment statements?