write a program to generate address labels using structures?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
What is function definition in c?
What does the c preprocessor do?
what is computer engg
What is printf () in c?
What is a pointer on a pointer in c programming language?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Why c is called a middle level language?
In C programming, what command or code can be used to determine if a number of odd or even?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
Can include files be nested?