Write a routine to implement the polymarker function
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { struct xx { int x=3; char name[]="hello"; }; struct xx *s=malloc(sizeof(struct xx)); printf("%d",s->x); printf("%s",s->name); }
main() { char *p; int *q; long *r; p=q=r=0; p++; q++; r++; printf("%p...%p...%p",p,q,r); }
main() { int i=4,j=7; j = j || i++ && printf("YOU CAN"); printf("%d %d", i, j); }
int main() { int x=10; printf("x=%d, count of earlier print=%d", x,printf("x=%d, y=%d",x,--x)); getch(); } ================================================== returns error>> ld returned 1 exit status =================================================== Does it have something to do with printf() inside another printf().
Is it possible to print a name without using commas, double quotes,semi-colons?
Write a program to receive an integer and find its octal equivalent?
What is the hidden bug with the following statement? assert(val++ != 0);
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
program to Reverse a linked list
12 Answers Aricent, Microsoft, Ness Technologies,
how to swap 3 nos without using temporary variable
main() { int k=1; printf("%d==1 is ""%s",k,k==1?"TRUE":"FALSE"); }
write a program in c language to get the value of arroy keys pressed and display the message which arrow key is pressed?