Are global variables static in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is const and volatile in c?
What is wrong with this declaration?
Explain the difference between malloc() and calloc() in c?
What is build process in c?
Explain what is the difference between the expression '++a' and 'a++'?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
how to swap 2 numbers within a single statement?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
define switch statement?
What are the uses of null pointers?
What are inbuilt functions in c?