What is a rvalue?
No Answer is Posted For this Question
Be the First to Post Answer
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Can a pointer be null?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
how can use subset in c program and give more example
Is boolean a datatype in c?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Program to find the sum of digits of a given number until the sum becomes a single digit
write a program to swap two variables a=5 , b= 10 without using third variable
How do I use strcmp?
Explain modulus operator.
int x=5; printf("%d%d%d",x,x<<2,x>>2);
Why is it that not all header files are declared in every C program?