What is c language and why we use it?
No Answer is Posted For this Question
Be the First to Post Answer
what is c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What are operators in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
how can write all 1to 100 prime numbers using for loop,if and break ?
In scanf h is used for
What does stand for?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
When the macros gets expanded?