1234554321
1234 4321
123 321
12 21
1 1
12 21
123 321
1234 4321
1234554321
No Answer is Posted For this Question
Be the First to Post Answer
who is the father of C Language?
20 Answers CTS, UST,
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
List some of the dynamic data structures in C?
What is the difference between single charater constant and string constant?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
What is variable declaration and definition in c?
Is swift based on c?
write a program to find the largest and second largest integer from an array
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }