What is a pointer on a pointer in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Why doesnt this code work?
Tell me what are bitwise shift operators?
How #define works?
write a C program to print the program itself ?!
What are the keywords in c?
What are variables c?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is the difference between text and binary i/o?
How pointer is benefit for design a data structure algorithm?
Why array starts with index 0
implement general tree using link list
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.