What is the benefit of using an enum rather than a #define constant?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between printf and scanf in c?
What are the 4 types of unions?
Explain what is the concatenation operator?
What is a MAC Address?
What is the meaning of ?
When should the volatile modifier be used?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What does the file stdio.h contain?
Write a program to print fibonacci series without using recursion?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
mplementation of stack using any programing language