How can I convert a number to a string?
No Answer is Posted For this Question
Be the First to Post Answer
Who had beaten up hooligan "CHAKULI" in his early college days?
What is the default value of local and global variables in c?
What are the disadvantages of a shell structure?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What are comments and how do you insert it in a C program?
Explain what is the difference between declaring a variable and defining a variable?
What is memmove?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
write a progrmm in c language take user interface generate table using for loop?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));