Explain what are global variables and explain how do you declare them?
No Answer is Posted For this Question
Be the First to Post Answer
WAP to find that given no is small or capital
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
write a c program for swapping two strings using pointer
int i=10; printf("%d %d %d", i, i=20, i);
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
is assignment operator is arithmatic or not
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"
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
Explain how do you determine a file’s attributes?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
How do I determine whether a character is numeric, alphabetic, and so on?
write a programme that inputs a number by user and gives its multiplication table.