answersLogoWhite

0

📱

C Programming

Questions related to the C Computer Programming Language. This ranges all the way from K&R to the most recent ANSI incarnations. C has become one of the most popular languages today, and has been used to write all sorts of things for nearly all of the modern operating systems and applications. It it a good compromise between speed, power, and complexity.

9,649 Questions

What is Ladderized?

It is where the level of difficulty escalates as it evolves.

What is the complexity?

its a situation occurring in the phallic stage in which a child develops a sexual attraction to the opposite-sex parent and jealousy of the same-sex parent

'how to write a counter program to count from 50 to 300 using while reception?

I'm going to assume you mean a while loop

using namespace std;

#include<iostream>

int main()

{

int ct = 50;

while(ct <= 300)

{

cout<<ct<<endl;

ct++;

}

return 0;

}

What is conio?

It is the Console IO header which is part of the C standard library.

'How does a C plus plus code execute on a computer system' like does the computer has a library or such that can understand C plus language and translate it into binary?

By execution time, the code has already been translated into binary ("compiled"). However, the program may still rely on outside libraries (.dlls for example) that have also been pre-compiled.

What does evaluate the expression mean?

Evaluating the expression is usually used in math, and it means solve the question.

What is a compiler in c program?

The compiler is software that allows any high-level language to be translated into the machine language, compilers are language specific, i.e. C language has its own compiler which will translate the code written in C language to the machine language, compiler for Java will do the same task for the Java code

What is encapsulation in c?

Assume you were asking as in C#, not C. Because C is not an OO language, thus if there is encapsulation, it would be different.

The encapsulation in any OO language is to hide the information of data and the implementation detail of a method.

For example, you have a bank account as a private data member. Any one can ask you about the Balance of your bank account, e.g. GetDeposits(), an operation that is public. Wait, you now are richer, and you open 2 more bank accounts, the public still has the only accessing method GetDeposits(), to get your total deposits.

The encapsulation in this abstraction are:

1. The detail, the implementation of GetDeposits(), is not revealed to public.

2. The data member, 1 account or 3 accounts, no one got impact, and no one knows. (in fact, no one knows how many bank accounts you have!)

ETT results of J and K Board 2007-09?

Ett Results for the J&K are available at the jkbose website

jkbose .co .in/resultsallnoti.php website

What are the next three letters in the following sequnce j f m a m j j a?

these letters stand for the months of the year

january

february

march ...

the next letters would be s o n d

Hope i helped you lol xx:)

Write a c program to find prime factor using recursion?

The following program prints all the prime factors of a given number 'n':# include # include // A function to print all prime factors of a given number nvoid primeFactors(int n){ // Print the number of 2s that divide n while (n%2 == 0) { printf("%d ", 2); n = n/2; } // n must be odd at this point. So we can skip one element (Note i = i +2) for (int i = 3; i <= sqrt(n); i = i+2) { // While i divides n, print i and divide n while (n%i == 0) { printf("%d ", i); n = n/i; } } // This condition is to handle the case whien n is a prime number // greater than 2 if (n > 2) printf ("%d ", n);} /* Driver program to test above function */int main(){ int n = 315; primeFactors(n); return 0;}

What is the difference between sycamore trees and cottonwood trees?

the tree bark has a different texture and style and the cottonwood has softer bark. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Flow chart of LCM of two numbers?

(start)

[calculate gcd]

[calculate product]

[divide]

(stop)

What does c stand for in C language?

It doesn't stand for anything. The 'C' language was developed as an improvement over its predecessor, which was called 'B'. (I'm not joking).

The predecessor of 'B' was called 'BCPL', which was an initialism for "Basic Combined Programming Language". The ancestor of BCPL was CPL, and CPL was a descendant of ALGOL.

What is the function of the circulation section in the library?

Library circulation or library lending comprises the activities around the lending of library books and other material to users of a lending library.

Why did the Japanese start a program of imperialism?

Japan had very few natural resources and a growing population.

Countries grow powerful in relation to the amount of resources they use in their industries, so to grow, they had to obtain their resources from other countries by the cheapest possible means, ie. by force.

Who invented the electromechanical computers?

The first mechanical computing machine was invented in Greece circa 100 BC: It was used for navigation. it was called the Antikythera mechanism.
It is remains unknown as to the origins and dating of the first mechanical computers. For example by definition the Abacus is mechanical and can perform computations. It has been around and remains used for the past thousands of years. The Abacus and the archeological discovery of the Greek computer remain with unknown inventors.

C program for leap year using conditional operator?

#include

#include

void main()

{

int y;

clrscr();

print f ("enter a year");

scan f ("%d",&y)

(y%100==0):((y%400==0)?print f("% d is leap year",y):print f("%d is not leap year",y):((y%4==0)? print f ("d is leap year",y): print f ("%d is leap year",y): print f ("%d is not leap year,y));

getch();

}

What is the difference between Malloc and calloc in C and JAVA?

In C, malloc is used to reserve a predetermined size of memory.

void * malloc ( size_t size );

calloc is used to reserve a chunk of memory large enough to store num elements, each of a predetermined size.

void * calloc ( size_t num, size_t size );

To create a char array of size 10 you can do it in one of two ways:

char* mChars = malloc( 10 * sizeof(char) );

char* cChars = calloc( 10, sizeof(char) );

There is no concept of malloc or calloc in Java.

C program to find whether is strong number or not?

#include<stdio.h>

void main()

{

int n,t,sum=0;

float fact=1;

clrscr();

printf("enter the number");

scanf(%d",&n);

t=n;

while(t)

{

for(i=0;i<=t%10;i++)

{

fact=fact*i;

}

sum=sum+fact;

fact=1;

t=t/10;

}

if(n==sum)

{

printf("strong number");

}

else

{

printf("not strong number");

}

getch();

}