what is a far pointer
ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
12 36497what is the difference between const char *p, char const *p, const char* const p
Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,
5 49828What is the output of the program given below
#include
What is the output of the following program
#include
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
4 9456Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
2 6738What is the output for the following program
#include
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
3D PLM, Code Studio, Deltech, IBM,
28 83754
What does node * mean?
Explain bit masking in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is double pointer in c?
Explain the difference between ++u and u++?
Can we change the value of constant variable in c?
Explain the use of keyword 'register' with respect to variables.
How can I do peek and poke in c?
Is python a c language?
can we change the default calling convention in c if yes than how.........?
What is the difference between exit() and _exit() function?
What are identifiers in c?
What is the use of a semicolon (;) at the end of every program statement?
How can you tell whether two strings are the same?