what are the files which are automatically opened when a c
file is executed?
Answers were Sorted based on User's Feedback
Answer / j j ramesh / ap / mca / jjcet
.exe and .obj files are open
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / om
stdin ,stdout, strcpy copies the data from one string to
another...
memcpy copies the data's memory...
| Is This Answer Correct ? | 2 Yes | 3 No |
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
why TCS selected more student in the software field from all institution.
How to declare pointer variables?
What is the difference between typeof(foo) and myFoo.GetType()?
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
Who invented b language?
What is array of structure in c?
Explain demand paging.