What is wrong with this code?
No Answer is Posted For this Question
Be the First to Post Answer
If you know then define #pragma?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What are all different types of pointers in c?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Write a program to generate prime factors of a given integer?
change to postfix a/(b+c*d-e)
What is the proper way of these job Tell me about there full work
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
What is local and global variable in c?