What are the modifiers available in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
In c programming language, how many parameters can be passed to a function ?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
Which of these functions is safer to use : fgets(), gets()? Why?
Why C language is a procedural language?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is the use of static variable in c?
Why can arithmetic operations not be performed on void pointers?
Explain the use of keyword 'register' with respect to variables.
write a c program in such a way that if we enter the today date the output should be next day's date.
what are two kinds of java
When should a type cast be used?
How many levels of pointers can you have?