What is an identifier?
No Answer is Posted For this Question
Be the First to Post Answer
who developed c and why he developed c?
What do you know about the use of bit field?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
How can you check to see whether a symbol is defined?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
what is void pointer?
what is a headerfile?and what will be a program without it explain nan example?
#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,
LOGIC OF Bodmas?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What is sizeof c?
Write a program to swap two numbers without using the third variable?