What are # preprocessor operator in c?
What is use of null pointer in c?
WHAT IS LOW LEVEL LANGUAGE?
Who is invented by c?
What is meant by operator precedence?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
what is use of malloc and calloc?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
Implement bit Array in C.
how can use subset in c program and give more example
Can a pointer be volatile in c?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above