what is ans for this
scanf(%%d",c);
What do mean by network ?
What is the g value paradox?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
c program to manipulate x=1!+2!+3!+...+n! using recursion
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
what is foreign key in c language?
How can I invoke another program from within a C program?
How do I send escape sequences to control a terminal or other device?
What is null pointer constant?
What are macros in C?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }