What is static and volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
what are bps & baud rates? differentiate these two?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
what is an inline fuction??
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is 1f in c?
how to write a program which adds two numbers without using semicolon in c
Do you know what is the purpose of 'extern' keyword in a function declaration?
What is void main () in c?
C program to find all possible outcomes of a dice?
what is real time system?what is the differance between hard and soft real time systems
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }