When I tried to go into a security sites I am denied access and a
message appeared saying 'applet not initialize'. How can I rectify this
problem.
No Answer is Posted For this Question
Be the First to Post Answer
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
triangle number finding program...
Can 'this' pointer by used in the constructor?
Difference between MAC vs. IP Addressing
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
What is sizeof array?
#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