Is c programming hard?
No Answer is Posted For this Question
Be the First to Post Answer
how to create duplicate link list using C???
What is the difference between functions abs() and fabs()?
How does struct work in c?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
#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?
Can the “if” function be used in comparing strings?
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
Why array is used in c?
How pointers are declared?
Difference between strcpy() and memcpy() function?
Between macros and functions,which is better to use and why?
What is static memory allocation? Explain