Which is not valid in C
a) class aClass{public:int x;};
b) /* A comment */
c) char x=12;
Explain threaded binary trees?
What is the proper way of these job Tell me about there full work
What are external variables in c?
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.
what is a function pointer and how all to declare ,define and implement it ???
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
Are comments included during the compilation stage and placed in the EXE file as well?
What is the difference between ++a and a++?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
what is the use of #pragma pack, wer it is used?
What is volatile c?
What is the difference between array and pointer in c?