Define VARIABLE?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between malloc() and calloc() function?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
what is op? for(c=0;c=1000;c++) printf("%c",c);
whether itis a structured language?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
I need previous papers of CSC.......plz help out by posting them.......
What is the diffrent between while and do while statement ?
Write code for atoi(x) where x is hexadecimal string.
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4