In C programming, what command or code can be used to determine if a number of odd or even?
No Answer is Posted For this Question
Be the First to Post Answer
How many keywords are there in c?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
how many times of error occur in C
Explain how to reverse singly link list.
What is #include stdlib h?
When should structures be passed by values or by references?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Explain what are run-time errors?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
What is a global variable in c?
what is the difference between structural,object based,object orientd programming languages?