Write a program that his output 1 12 123
No Answer is Posted For this Question
Be the First to Post Answer
how to write a c program to print list of fruits in alpabetical order?
What is memory leak in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
How pointers are declared?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
how to find anagram without using string functions using only loops in c programming
Is there any demerits of using pointer?
Explain how do you generate random numbers in c?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is default value of global variable in c?
what does " calloc" do?
what is array?