What is the use of the function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of static variable in c?
How can a process change an environment variable in its caller?
What are structure members?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
How can I invoke another program from within a C program?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
What does emoji p mean?
WAP – represent a char in binary format
HOW TO HANDLE EXCEPTIONS IN C
What are the 4 types of unions?
Explain what are the __date__ and __time__ preprocessor commands?
Can a pointer be null?