How can you convert integers to binary or hexadecimal?
No Answer is Posted For this Question
Be the First to Post Answer
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
write a program to display the array elements in reverse order in c language
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Is malloc memset faster than calloc?
In a switch statement, what will happen if a break statement is omitted?
main() { int a; a=++100; printf("%d",a); getch(); }
How do you sort filenames in a directory?
What does it mean when the linker says that _end is undefined?
what is the difference between. system call and library function?
Program to find larger of the two numbers without using if-else,while,for,switch
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 that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.