WHAT IS C?
Answers were Sorted based on User's Feedback
Answer / siddhartha mukherjee
C is the third letter of english alphabet
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / k.rangaswamy
This is the one of the language which is used to interact
with the hardware in the efficiency manner.This is actually
a procedure oriented language and also we can call it as
High level language.
| Is This Answer Correct ? | 0 Yes | 0 No |
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Can you mix old-style and new-style function syntax?
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
Tell me can the size of an array be declared at runtime?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
What is the g value paradox?
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
Describe the difference between = and == symbols in c programming?
what is the difference between char * const and const char *?
What is function what are the types of function?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300