What is the mean of function?
No Answer is Posted For this Question
Be the First to Post Answer
c program to arrange digits in a no in ascending and descending order
What is the use of the function in c?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
What is the main difference between calloc () and malloc ()?
How to establish connection with oracle database software from c language?
Explain how can you determine the size of an allocated portion of memory?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What are the keywords in c?
What is the difference between typedef and #define?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
write a program that print itself even if the source file is deleted?
What is dynamic variable in c?