What are the different categories of functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does the message "automatic aggregate intialization is an ansi feature" mean?
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.
How was c created?
Why is this loop always executing once?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
please give me some tips for the selection in TCS.
Explain Basic concepts of C language?
Difference between C and Embedded C?
What is s in c?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Write a program to print fibonacci series using recursion?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?