I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
No Answer is Posted For this Question
Be the First to Post Answer
related to rdbms query .
What language is windows 1.0 written?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
What is structure of c program?
Where are local variables stored in c?
What is 'bus error'?
The statement, int(*x[]) () what does in indicate?
Write a program to swap two numbers without using third variable?
can i know the source code for reversing a linked list with out using a temporary variable?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.