What is define directive?
No Answer is Posted For this Question
Be the First to Post Answer
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
without using arithmatic operator solve which number is greater??????????
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is macro?
How can you find the exact size of a data type in c?
What is meant by int main ()?
Is it fine to write void main () or main () in c?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Can you pass an entire structure to functions?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
What should malloc() do? Return a null pointer or a pointer to 0 bytes?