Answer Posted / hasib
C is based program . The computer only know binary number (0s and 1s)
That is why identifiers not to give one digits , he give two digits follow binary number c++.
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What are pointers in C? Give an example where to illustrate their significance.
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Define circular linked list.
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Do you know the purpose of 'register' keyword?
How can you increase the allowable number of simultaneously open files?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Can i use “int” data type to store the value 32768? Why?
Explain the difference between strcpy() and memcpy() function?
What is a structure member in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is meant by type casting?
What is ## preprocessor operator in c?