is it possible to create your own header files?
No Answer is Posted For this Question
Be the First to Post Answer
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Difference between malloc() and calloc() function?
How can a number be converted to a string?
Explain what are linked list?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
What is the difference between functions getch() and getche()?
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
i have a written test for microland please give me test pattern
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?