Add Two Numbers Without Using the Addition Operator
No Answer is Posted For this Question
Be the First to Post Answer
Please write the area of a RIGHT ANGLED TRIANGLE.
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What is #error and use of it?
What's wrong with "char *p; *p = malloc(10);"?
Explain how can you restore a redirected standard stream?
What is a pointer on a pointer in c programming language?
what is void pointer?
Write a program with dynamically allocation of variable.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
write a program to interchange the value between two variable without using loop
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
#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