What is the stack in c?
No Answer is Posted For this Question
Be the First to Post Answer
Simplify the program segment if X = B then C ← true else C ← false
write a program in c language to print your bio-data on the screen by using functions.
Why do we need functions in c?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
how write a addtion of two single dimensional array using of pointer in c language?
How does the assert() function work?
Explain modulus operator.
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
What are the advantages of external class?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
What is a keyword?