write an algorithm to display a square matrix.
No Answer is Posted For this Question
Be the First to Post Answer
what is Array?
State the difference between realloc and free.
What are the standard predefined macros?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
When should you use a type cast?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
While(1) { } when this loop get terminate is it a infinite loop?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
how to find out the union of two character arrays?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
What is scanf_s in c?