What are the differences between Structures and Arrays?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different categories of functions in c?
WHAT IS HIGH LEVEL LANGUAGE?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
how can I convert a string to a number?
what do you mean by inline function in C?
what is the difference between malloc() and calloc() function?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
what is c?
When is the “void” keyword used in a function?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }