Explain the difference between null pointer and void pointer.
No Answer is Posted For this Question
Be the First to Post Answer
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
How can I find leaf node with smallest level in a binary tree?
what are the facialities provided by you after the selection of the student.
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Why enum is used in c?
Explain modulus operator. What are the restrictions of a modulus operator?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
What does c mean before a date?
Whether there can be main inside another main?If so how does it work?