What are the characteristics of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is conio h in c?
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 does the && operator do in a program code?
how to set Nth bit of variable by using MACRO
Why does everyone say not to use scanf? What should I use instead?
why the execution starts from main function
Explain how are portions of a program disabled in demo versions?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
How to explain the final year project as a fresher please answer with sample project
Write a program to show the change in position of a cursor using c
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
In C, What is the #line used for?