Explain Basic concepts of C language?
No Answer is Posted For this Question
Be the First to Post Answer
How can I sort more data than will fit in memory?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Why is extern used in c?
What is the purpose of clrscr () printf () and getch ()?
Do pointers need to be initialized?
Write a routine that prints out a 2-D array in spiral order!
How do you determine the length of a string value that was stored in a variable?
can anyone please tell about the nested interrupts?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
what is call by value and call by reference
how write a addtion of two single dimensional array using of pointer in c language?