Why c is called a mid level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
what r callback function?
What are static variables in c?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
What is file in c language?
Write a program that can show the multiplication table.
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
Write a program for print infinite numbers
Give the Output : * * * * * * * * * *
What is structure data type in c?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
What is an lvalue and an rvalue?
Are there constructors in c?