Explain what is a 'locale'?
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"); }
What are volatile variables?
What is typeof in c?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
what do the 'c' and 'v' in argc and argv stand for?
What is difference between scanf and gets?
do you think its fraud or original company?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a c program to calculate sum of digits till it reduces to a single digit using recursion
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What is double pointer in c?