What is struct node in c?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS ABSTRACT DATA TYPE
WAP – represent a char in binary format
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is a void * in c?
What is variables in c?
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
What is the ANSI C Standard?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
how to find a 5th bit is set in c program
#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?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
What is C language Terminator?