what are two kinds of java
Answers were Sorted based on User's Feedback
How we can set and clear bit in a byte using macro function?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
what is a NULL pointer?
How can I find the modification date and time of a file?
What are the 4 data types?
is assignment operator is arithmatic or not
Write a C program to print 1 2 3 ... 100 without using loops?
#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 was noalias and what ever happened to it?
Why shouldn’t I start variable names with underscores?
What is a macro in c preprocessor?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,