Is javascript based on c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the primitive data types in c?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
Where does the name "C" come from, anyway?
Explain what is #line used for?
write a program to remove duplicate from an ordered char array? in c
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Is it acceptable to declare/define a variable in a c header?
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"); }
How can I ensure that integer arithmetic doesnt overflow?
What is wild pointer in c?
What is the purpose of main() function?
What is the Difference between Class and Struct?