What is the use of a conditional inclusion statement in C?
No Answer is Posted For this Question
Be the First to Post Answer
Mention four important string handling functions in c languages .
how to devloped c lenguege?
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
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
What are the advantage of c language?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is the purpose of realloc()?
What is a header file?
What's the total generic pointer type?
#define d 10+10 main() { printf("%d",d*d); }
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none