#include<stdio.h>
int main( )
{
Int a=300, b, c;
if(a>=400)
b=300;
c=200;
printf(“%d%d
”, b, c);
return0;
}
How can I prevent another program from modifying part of a file that I am modifying?
When should you not use a type cast?
What is integer constants?
What is meant by int main ()?
what is a pointer
4 Answers Bank Of America, TCS,
What is the size of structure pointer in c?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
how is the examination pattern?
Program to find the sum of digits of a given number until the sum becomes a single digit
Write a program to swap two numbers without using third variable in c?
What is pass by value in c?