Give the rules for variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
how is the examination pattern?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a pointer?
prototype of sine function.
Give 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); }
What is null character in c?
Explain the differences between public, protected, private and internal.
What is the purpose of #pragma directives in C?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What is the difference between declaring a variable by constant keyword and #define ing that variable?