write an algorithm to display a square matrix.
No Answer is Posted For this Question
Be the First to Post Answer
Can main () be called recursively?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
can we have joblib in a proc ?
What is unsigned int in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Can a variable be both const and volatile?
which one is better structure or union?(other than the space occupied )
How to calculate sum
What is encapsulation?