What is the purpose of clrscr () printf () and getch ()?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
can we implement multi-threads in c.
What is the meaning of && in c?
What is scope rule in c?
Who invented bcpl language?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
int x=sizeof(!5.856); What will value of variable x?
while initialization of array why we use a[][2] why not a[2][]...?
What is the need of structure in c?
Tell us bitwise shift operators?
What is a MAC Address?