What is the difference between fread buffer() and fwrite buffer()?
No Answer is Posted For this Question
Be the First to Post Answer
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
Explain what are multibyte characters?
Is it better to use a macro or a function?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
Distinguish between actual and formal arguments.
What is a union?
How can you allocate arrays or structures bigger than 64K?
Find MAXIMUM of three distinct integers using a single C statement
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
prog for 1st five prime numbers in 2^x - 1
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above