What is pointer to pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
What is use of bit field?
how to swap two integers 1 and 32767 without using third variable
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
What are reserved words?
Find greatest number out of 10 number without using loop.
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
write a code for large nos multilication (upto 200 digits)
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How to write a C program to determine the smallest among three nos using conditional operator?
What does 2n 4c mean?