What is cohesion in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
Explain bitwise shift operators?
How can I access memory located at a certain address?
What is indirection?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What are the string functions? List some string functions available in c.
what is used instead of pointers in java than c?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What is the role of && operator in a program code?
What are the advantages and disadvantages of c language?
How does free() know explain how much memory to release?