Skip to content

Instantly share code, notes, and snippets.

@Codeplaza
Last active December 31, 2015 00:29
Show Gist options
  • Select an option

  • Save Codeplaza/7907486 to your computer and use it in GitHub Desktop.

Select an option

Save Codeplaza/7907486 to your computer and use it in GitHub Desktop.
Quiz 3.0 2
#include<stdio.h>
int main()
{
int m = 96,j= 49;
m = (printf("What's up"), printf(" programmers ? "));
printf("%d", m);
return 0;
}
@mdtsakir
Copy link

there will be error in program, because m= ... is not a valid statement.

@chanakyamandava
Copy link

What's up programmers ? 15

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment