Where are c variables stored in memory?
No Answer is Posted For this Question
Be the First to Post Answer
Give me basis knowledge of c , c++...
How is a null pointer different from a dangling pointer?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
#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 about "char *(*(*a[])())();"
what r the cpu registers r ther?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Who invented b language?
What are the advantages of using new operator as compared to the function malloc ()?
can any one provide me the notes of data structure for ignou cs-62 paper
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Is c dynamically typed?