What does
do in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of clrscr?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Why is sizeof () an operator and not a function?
What is wrong with this initialization?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
write a program to concatenation the string using switch case?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
How to add two numbers with using function?
What is a header file?
What is a program flowchart and explain how does it help in writing a program?
C program to find frequency of each character in a text file?
Write a program to add a given duration with time(24hrs format)