#include<string.h>
void main()
{
String s1[]={"swathi"};
string s2[]={"maddimsetti"};
s1[]=s[];
printf("%s",s1[]);
}
Answers were Sorted based on User's Feedback
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
Do you know the purpose of 'register' keyword?
What are the benefits of organizational structure?
Where is c used?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
what is op? for(c=0;c=1000;c++) printf("%c",c);
what are non standard function in c
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
write a c program to check weather a particluar bit is set or not?
how to swap two nubers by using a function with pointers?
What is undefined behavior?