What is an operator?
No Answer is Posted For this Question
Be the First to Post Answer
What are global variables and explain how do you declare them?
explain memory layout of a C program
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What does %d do in c?
Can you mix old-style and new-style function syntax?
what is array?
Explain the difference between malloc() and calloc() function?
Explain that why C is procedural?
find out largest elemant of diagonalmatrix
What is meant by keywords in c?
ATM machine and railway reservation class/object diagram