Explain how can I read and write comma-delimited text?
No Answer is Posted For this Question
Be the First to Post Answer
What is the data segment that is followed by c?
Can a pointer be static?
What is a pointer on a pointer in c programming language?
Do you know the use of fflush() function?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
what is develop in c language
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
Write a program to find given number is even or odd without using any control statement.
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
The __________ attribute is used to announce variables based on definitions of columns in a table?
what is difference between strcmp & palindrome?