What is null in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
In which category does main function belong??
Explain how can I manipulate strings of multibyte characters?
Why does everyone say not to use gets?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What is the difference between exit() and _exit()?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
Explain what is operator promotion?
What is the c language function prototype?