What are extern variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
Eight queens puzzle
What are structure members?
Write any data structure program (stack implementation)
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
difference between object file and executable file
Is c# a good language?
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"); }
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
What is "Hungarian Notation"?