what are two kinds of java
Answers were Sorted based on User's Feedback
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
what is the advantage of software development
Dear Sir, we are required the bubble sorting programs Regs Prem
hat is a pointer?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
const char * char * const What is the differnce between the above tow?.
What is the difference between the expression “++a” and “a++”?
what is computer
how to create c progarm without void main()?
name the language for writing c compiler?
What is the proper way of these job Tell me about there full work
What are the average number of comparisons required to sort 3 elements?