how to make program without <> in libray.
No Answer is Posted For this Question
Be the First to Post Answer
What is the explanation for cyclic nature of data types in c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the difference between single charater constant and string constant?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
What is the difference between realloc() and free()
What is the difference between printf and scanf )?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
How is a null pointer different from a dangling pointer?