What is the translation phases used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of operators in c?
I have seen function declarations that look like this
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
How can I find out how much memory is available?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
What is difference between union All statement and Union?
Explain the advantages of using macro in c language?
How can I write functions that take a variable number of arguments?
how to impliment 2 or more stacks in a single dimensional array ?
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
Are c and c++ the same?