Answer Posted / krishna
four types of functions available in c
1.with parameters with return type
2.with parameters without return type
3.without parameters with return type
4.without parameters without return type
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is #define in c?
What is union and structure?
What is modeling?
What does 3 mean in texting?
What is the use of getchar functions?
Explain bitwise shift operators?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is a stream?
what is the role you expect in software industry?
What is bubble sort technique in c?
Do pointers take up memory?
What is static and auto variables in c?
Under what circumstances does a name clash occur?
What is the scope of local variable in c?
Explain what is the purpose of "extern" keyword in a function declaration?