Write the syntax and purpose of a switch statement in C.
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
what does exit() do?
How do you print an address?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is an operator?
du u know test pattern for robosoft? Plz share
1 Answers RoboSoft, TATA, Wipro,
What are the different types of pointers used in c language?
What would be an example of a structure analogous to structure c?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.