How many types of functions are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
What standard functions are available to manipulate strings?
Why can arithmetic operations not be performed on void pointers?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
What is the best way to comment out a section of code that contains comments?
biggest of two no's with out using if condition statement
Explain why C language is procedural?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
Write a program to check palindrome number in c programming?
Explain what is the stack?
How do you define a string?
What are different types of variables in c?