Is there sort function in c?
No Answer is Posted For this Question
Be the First to Post Answer
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Explain what’s a signal? Explain what do I use signals for?
What are pragmas and what are they good for?
how to write a program which adds two numbers without using semicolon in c
Can variables be declared anywhere in c?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
Do you know the difference between malloc() and calloc() function?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer