How was c created?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program for deleting duplicate elements in an array
What are the differences between new and malloc in C?
What is scope and lifetime of a variable in c?
Is exit(status) truly equivalent to returning the same status from main?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
write a c program that prints all multiples of 3between 1 and 50.
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
Is there anything like an ifdef for typedefs?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What are the two types of functions in c?
What is substring in c?