An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know pointer in c?
Why do we use return in c?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What's the total generic pointer type?
write a program to find the largest and second largest integer from an array
how to add numbers without using arithmetic operators.
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What is the difference between text and binary modes?
What is the need of structure in c?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
#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
1 What is a Data Structure?